How to redirect to another page in asp.net ?

liunx

Guest
How to redirect to another page in asp.net ?double click on the button, then at the code behind, inside the button function, write this code...
Response.Redirect("filename.aspx")
 
Back
Top