Help! How to create aspx file dynamically

  • Thread starter Thread starter flip2flik
  • Start date Start date
While you can certainly use an "aspx template" and fill it in with data and
then save the file with a specificname.aspx, there is an inherent problem
with this approach that your "lecturer" needs to learn: when you save a file
into an ASP.NET application, because of folder and file monitoring, your
application is going to restart. All session and other data will be trashed.
A Database would be far preferable and more extensible.
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
BlogMetaFinder(BETA): http://www.blogmetafinder.com
 
Alright. Thank you. I will let him know about this too. Hopefully, he
will stick to using database.
 
Back
Top