2011-05-26 45 views
0

我想在出現錯誤消息後添加鏈接。目前,我有這個在我的代碼:添加錯誤消息附近的鏈接

<asp:CustomValidator ID="CV2" runat="server" ClientValidationFunction="Validate" 
    ForeColor="Red" OnServerValidate="Server_Validate" ValidationGroup="group" 
    ErrorMessage="You have not validated." Display="Dynamic" Enabled="false" 
    ControlToValidate="txtAmount" /> 

的JavaScript:

function Validate(source, arguments) { 
      var validAmount = document.getElementById('<%= validate.ClientID %>').innerHTML.replace('$', '').replace(/,/g, ''); 
      if (arguments.Value > validAmount) 
       arguments.IsValid = false; 
      else 
       arguments.IsValid = true; 
} 

C#代碼:

protected void Server_Validate(object source, ServerValidateEventArgs args) 
{ 
    try 
    { 
    //Some C# code here. 
    } 
} 

什麼是對此最好的方法呢?謝謝。

回答

0

你試過:

CV2.ErrorMessage = "<a href='www.google.com'>You have not validated.</a>"; 

我沒有測試它,但我知道我可以添加標記到我的標籤文本。