Madhav
Madhav

Reputation: 569

How to create html/aspx page on button click which holds database fields?

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

Answers (1)

Charlie
Charlie

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

Related Questions