|
|
ASP.NET Image Button
Using MarkUp - Observe the onClientClick event
<asp:ImageButton ID="btnShow" ImageUrl="~/Images/Show.gif"
runat="server" OnClientClick="return false;" />
Using Code Behind:
C#
protected void Page_Load(object sender, EventArgs e)
{btnShow.Attributes.Add("onclick", "return false;");
}
VB.NET
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
btnShow.Attributes.Add("onclick", "return false;")
End Sub
HTML Image Button
To prevent postback on an HTML Image button, use the following tag:
<input type="image" id="imgBtn"
onclick="return false;" src="Images/Show.gif" />
'Like' us on our FaceBook page if you find this blog useful. Thanks!
Did you like this post?
|
|
|
||
|
|
|
|
Save on Delicious |
|
|
subscribe via rss |
|
subscribe via e-mail |
|
|
print this post |
|
follow me on twitter |




comments
1 Response to "Supress Postback on an ASP.NET ImageButton"Thank you!
Post a Comment