Create dynamic ASPX page in ASP.Net
Here Mudassar Ahmed Khan has explained how to create dynamic ASPX page in ASP.Net using C# and VB.Net. The dynamic ASPX pages will be created from database with the help of URL Routing. In this article I will explain how to create dynamic ASPX page in ASP.Net using C# and VB.Net. The dynamic ASPX pages will be created from database with the help of URL Routing. Concept There are other articles creating ASPX pages dynamically by generating an .ASPX file, in contrast my approach is clean and makes use of database to allow users manage and control the dynamic pages with ease. Each page is given a unique name and is saved in database and then with the help URL Routing feature the same is accessed dynamically. Database Below is the schema of the Table that will be used for this article. It will be used to store the name of the page, its Title and the Content. Note : The SQL for creating the database is provided in the attached sample code. N...