I have an imagebutton on my page.
After doing some processing (calcualtions and things) I want to navigate to a particular page.
How can I do that.
Printable View
I have an imagebutton on my page.
After doing some processing (calcualtions and things) I want to navigate to a particular page.
How can I do that.
You can use the Response object:
Code:Response.Redirect("MyPage.aspx")
I knew it was something straight forward I just couldn't get it.
Thanks.
What namespace whould that be in.
I am needing to call it from within a class.
I just found it.
System.Web.HttpResponse