How to: dynamically create NEW pages?

Discussion in 'ASP.NET 2.0' started by Rookie, Mar 19, 2007.

  1. Does anyone know of a good way to allow a website administrator to create new pages for the site using a web interface?

    Example: I have created a site for someone who knows nothing about programming using asp.net 2.0 and would like to implement a function on the site to allow him to create additional pages when he needs to.

    I thought about making one dynamic page that references content from a database, but I would much rather keep the pages seperate so it is easier for him to manage.

    any help/advice would be much appreciated.
     
  2. There is another way You can create static pages on fly by using simple file wrting class dont add any server Tag on it use html and javascript . For creating this type of pages you can use any rich html editor.

    Regards
    Ramesh K Tiwary
    http://rameshtiwary.awardspace.com
     
  3. That's a good idea. I will need to make the pages that I add .aspx page. I think I'll take your idea of using the file writer class and just have a pre built template that the is creating and assigns the name of the .aspx page to whatever the user specifies.


    Thanks
     

Share This Page