Reputation: 569
Here I wish to create a dynamic aspx
or HTML
page on button click, and that page will have the database fields values using Asp.net and C#.
Is it possible to create such dynamic page on button click?
Upvotes: 0
Views: 114
Reputation: 2263
The technology under the hood is to use Response.Write("xxx"). So, yes, you can make use of it to create a page.
e.g.
Response.Write("<html><head></head><body>aaaaaaaaaaaaa</body></html>")
Upvotes: 1