Click here to Skip to main content
15,879,096 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
<asp:LinkButton ID="lbClickPhoto" CssClass="link" ForeColor="Blue" runat="server"
                                        OnClick="lbClickPhoto_Click" OnClientClick="test">Click Photo</asp:LinkButton>
Posted
Updated 21-Nov-12 22:42pm
v2

1 solution

in the "OnClientClick" event you should user "return" and then after the OnClientClick event, it will get to the server side and do the OnClick event.

example:

ASP.NET
<asp:LinkButton ID="lbClickPhoto" CssClass="link" ForeColor="Blue" runat="server" OnClick="lbClickPhoto_Click" OnClientClick="return TestFunc();">Click Photo</asp:LinkButton>
 
Share this answer
 
v3
Comments
Member 9463303 22-Nov-12 4:53am    
what does this code "xmlns:asp="#unknown" will do?
DanaH85 22-Nov-12 4:58am    
Sorry, I copied it wrong.
I fixed it now...
Member 9463303 22-Nov-12 5:25am    
Okey Thanks :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900