2012-01-26 71 views
0

我需要在OnServerValidate返回肯定結果後調用我自己的javascript函數。如何在驗證結果後添加自定義js

<asp:CustomValidator Display="Dynamic" OnServerValidate="DBValidate"> 

我不能使用jQuery或任何其他外部JavaScript庫。

回答

1

在服務器上寫:

ScriptManager.RegisterStartupScript(this, this.GetType(), "MyScript", "alert('MyScript');", true); 

這個腳本會在服務器將返回到客戶端的響應被立即執行。

相關問題