I’m new in .net C#, just a question here. how can I click a button then it will pop-up a new window to display a page?
example:
If I have a page test.aspx, how can I code in .net c# web application so that it will pop-up a new window to display this page?
There’s nothing intrinsic with ASP.NET or C# that does this. You’re still outputting Html, so the methods of doing such a thing in JavaScript or
target="_blank"in a link will still work.