ASP.NET OnClientClick Property
Definition and Usage
The OnClientClick property is used to set the client-side script to be executed when the LinkButton control is clicked.
In addition to predefined scripts, scripts specified in this property can be executed through the LinkButton's 'OnClick' event.
Syntax
<asp:LinkButton OnClientClick="func" runat="server" />
Property | Description |
---|---|
func | Client-side script to be executed when the LinkButton is clicked. |
Example
The following example will run two scripts when the LinkButton control is clicked:
<script runat="server"> Sub script1(obj As Object, e As EventArgs) lblMsg.Text="Hello!" End Sub </script> <html> <body> <form runat="server"> <asp:LinkButton OnClick="script1" OnClientClick="script2()" Text="Click Me" runat="server" /> <br /> <asp:label id="lblMsg" runat="server" /> </form> <script type="text/javascript"> function script2() { return confirm('Hello!'); } </script> </body> </html>
Example
- Run two scripts through the LinkButton control