Sharepoint 表单字段验证

发布于 2024-11-28 17:07:43 字数 268 浏览 0 评论 0原文

  <SharePoint:FormField 
        ID="id" 
        runat="server" 
        ControlMode="New"
        FieldName="FName" >
  </SharePoint:FormField>

在 web 部件中有一个 asp.net 按钮。 该字段为必填字段。当我单击按钮时,验证不会执行。

我如何验证该字段。

I have

  <SharePoint:FormField 
        ID="id" 
        runat="server" 
        ControlMode="New"
        FieldName="FName" >
  </SharePoint:FormField>

in the webpart, and a asp.net button on it.
the field is required field. when i click the button the validation does't perform.

how can i validate the field.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

八巷 2024-12-05 17:07:43

这是可能的,通过调用 FormField.Validate();和 FormField.IsValid

但您必须手动将此验证的结果返回给用户。我还没有找到更好的解决方案。

It is possible, by calling FormField.Validate(); and FormField.IsValid

But you have to return the outcome of this validation manually to the user. I have not yet found a better solution.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文