I added a page “First.aspx” in my website application. Inside First.aspx page i have a button named btnbutton.
“onclick” Event of “btnbutton” a new dynamic page should open.
how can i do this.?
Please Remember the new dynamic page created, is not in existing in the application. This page should be created at runtime and dynamic also.
please help me out!
I added a page First.aspx in my website application. Inside First.aspx page i have
Share
If you are asking about generating ASP.NET pages at runtime, that is impossible. The reason is the following:
However, if you are asking about navigation between pages, then, you could use
Response.Redirect: