How to use javascript to operate custom properties of web controls

Source: Internet
Author: User

During programming, custom properties of web server controls are sometimes used. For example, the TextBox control does not have the IsNotNull attribute, but we can add an IsNotNull attribute as a tag to facilitate programming.

Although the IDE will prompt the warning message "IsNotNull is not a TextBox property", it does not prevent us from using it!

Code:
<Asp: TextBox ID = "TextBox1" runat = "server" IsNotNull = "e"> </asp: TextBox>

Compile Javascript code:
Copy codeThe Code is as follows:
<Script language = javascript type = "text/javascript">
Function getClick ()
{
Var c = document. getElementById ("<% = TextBox1.ClientID %> ");
If (c. IsNotNull = 1)
{
Alert ("IsNotNull is 1 ");
}
Else if (c. IsNotNull = 0)
{
Alert ("IsNotNull is 0 ");
}
Else
{
Alert (c. IsNotNull); // if it is not 0 or 1, the attribute value of IsNotNull is displayed.
}
}
</Script>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.