downloading a new page

I'm writing a basic demonstrator that takes a Windows forms application and converts it to a web solution using the Visual Web developer. I've treated each form as a new aspx page and I want to simply download to the user browser a new page in response to a button click. I've searched the help files but I can't find the command syntak. It must be simple because the menu and tree command coupled with a site map does, but they don't quite fit the bill. Any help would be appreachiated.

Ken



Answer this question

downloading a new page

  • NocturnalOne

    Thanks for the answer, It's a new area for me so my appologies for using the wrong forum

    Ken


  • Sanjay Kumar

    If you have a button on your page, you can add a click handler, and in the code behind do a Response.Redirect. You can also use a linkbutton, and just specify a URL to go to.

    However, these forums are not for ASP.NET questions, you should try www.asp.net or www.codeproject.com :-)



  • downloading a new page