, , , , script.
JS- (: jQuery), :
JQuery
$(function() {
$('#<%= button1.ClientID %>').click(function() {
window.location.href = "Webform2.aspx";
});
});
ASP.NET
<asp:Button id="button1" runat="server"/>
, ASP.NETesque , Button.PostBackUrl, , script, , . HTML :
<input type="submit" name="button1" value="Button" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("button1", "", true, "", "webform2.aspx", false, false))" id="button1" />
, ,
Response.Redirect("Webform2.aspx"); .
, , , .