Sharepoint 表单字段验证
我
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是可能的,通过调用 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.