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.
}
}
什麼是對此最好的方法呢?謝謝。