使用RequiredFieldValidator控件驗證FCKeditor是否填寫內容的時候會遇到一個問題
填寫了內容之後第一次提交還會提示沒有填寫內容
換上自定義驗證控件CustomValidator
設置ClientValidationFunction=
利用FCKeditor提供的Javascript API可以解決這個問題
JavaScript_API#Events
在頁面上加入以下腳本
<script type=
//<![CDATA[
var fckeditorContentLength =
function checkFckeditorContent(source
{
arguments
}
function FCKeditor_OnComplete(editorInstance)
{
editorInstance
}
function FCKeditor_OnBlur(editorInstance)
{
fckeditorContentLength = editorInstance
//在FCKeditor失去焦點時
if(fckeditorContentLength >
document
}
}
//]]>
</script>
問題到此就解決了
From:http://tw.wingwit.com/Article/program/net/201311/11530.html