我已经接管了一个通过 WCF 服务进行调用的站点的维护工作。对于客户端的某些验证器,有一个验证摘要显示在消息框中。如果我的 Web 服务调用出现任何异常,我也有一个标签。调整布局后,标签位于不方便的位置。我想知道如果后面的代码中发生异常,是否有办法在验证摘要中显示标签文本。
任何建议表示赞赏。
cs 文件中的示例:
bool ResultUserExistence = register.CheckUniquenessUserID(txtUserId.Text);
if (ResultUniquenessEmail == null)
{
continue through code...
}
else
{
lblException.Text = "Please choose a different user name. The current user name is already registered.";
}
验证摘要:
<asp:ValidationSummary ID="valSummary"
runat="server"
HeaderText="Please correct the following error(s):"
DisplayMode="List"
ForeColor="#FF9999"
ShowMessageBox="True"
ShowSummary="False" />