making an unneeded post back

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi

I have a WebForm1 with a button to navigate using Response.Redirect
("myPage2",true) and I have notice that the Webform1 makes a complete
PostBack before leave, and that is making my app more heavy, how can stop it
because the postback of the Webform1 is unneeded

any sugg?
--
 
You can try this also

<input type ="button" value="Do It!" onClick="location.href='urfile.htm';">
 
Back
Top