ASP.NET ClientID Property


Control Standard Properties Reference Complete Control Standard Properties Reference

Definition and Usage

The ClientID property is a automatically generated identification for a control.


Example

The following example shows the ClientID of a button control:

<script runat="server">
Sub Button1_Click(sender As Object, e As EventArgs)
  Response.Write("The ClientID of the button is: ")
  Response.Write(button1.ClientID)
End Sub
</script>

<form runat="server" >
<asp:Button ID="button1" OnClick="Button1_Click"
Text="Get ClientID" runat="server" />
</form>

Show example »

Control Standard Properties Reference Complete Control Standard Properties Reference

Color Picker

colorpicker