在我的用户控件中,我的代码为:
<asp:UpdatePanel ID="UpdatePanel2" runat="server">
<ContentTemplate>
<asp:CustomValidator ID="cvOrgTypeGrid" runat="server" Enabled="false" Display="Dynamic"
ErrorMessage="Please add rules to get eligible members" >
</asp:CustomValidator>
在Code背后,我的功能如下:
public void Validate(bool isOrgType)
{
if (!isOrgType) return;
if (Rules.Any()) return;
cvOrgTypeGrid.Enabled = true;
cvOrgTypeGrid.IsValid = false;
}
我想在messagebox中收到错误消息“请添加规则以获取符合条件的成员”。
任何人请帮忙。