Asp.net FCKeditor custom non-empty Verification

Source: Internet
Author: User

It must be submitted twice to pass. The solution is to disable the client script verification function of the requiredfieldvalidator control. Verify on the server only. CopyCode The Code is as follows: <asp: requiredfieldvalidator id = "requiredfieldvalidator16" runat = "server" controltovalidate = "fck" display = "dynamic" enableclientscript = "false" errormessage = "content not filled"> </ASP: requiredfieldvalidator>

Today, I found a new solution when searching for information. Use the customvalidator control provided by fck to solve the above bug. Use JS on the client for fck non-empty verification.
CodeCopy codeThe Code is as follows: // fck non-empty Verification
VaR oediter;
Function fckvalidate (source, arguments)
{
VaR value = oediter. getxhtml (true );
If ($. Trim (value) = '')
{
Arguments. isvalid = false;
}
Else
{
Arguments. isvalid = true;
}
}
Function fckeditor_oncomplete (editorinstance)
{
Oediter = editorinstance;
}

Copy codeThe Code is as follows: <asp: customvalidator id = "customvalidator1" runat = "server" display = "dynamic" errormessage = "unspecified" clientvalidationfunction = "validtitle" onservervalidate = "validfck" controltovalidate = "fck"> </ ASP: customvalidator>

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.