0
<asp:CustomValidator ID="PresZipValidator" ControlToValidate="txtZip"
runat="server" ErrorMessage="Required Field" EnableClientScript="false"
ForeColor="Red"></asp:CustomValidator>
我的驗證將不會顯示在我的網頁form..any建議?我有一個按鈕事件,看看頁面是否有效,什麼都沒有顯示。自定義驗證將不會顯示
這個驗證器的處理程序是什麼? – 2011-06-16 16:01:19
protected void btnContinue_Click(object sender,EventArgs e) {if(txtZip.Text!=「」) { PresZipValidator.IsValid = true; } else { PresZipValidator.IsValid = false; } – 2011-06-16 16:07:33
我想你要設置'Text =「必填字段」',如果你使用'ValidationSummary',你只使用'ErrorMessage'。另外,你可以使用asp:RequiredFieldValidator來實現你想要的功能,然後你不需要服務器驗證功能。 – 2011-06-16 16:13:51