验证 SQL Server 存储过程的数据
我习惯于在执行 sp 将数据插入数据库之前使用 ASP .Net 中的验证对象来检查用户输入。
如何在 win 应用程序中使用验证对象?
我使用的是:
- VS C# 2008 Express
- 上面自带的
MS SQL Express。我搜索其他用户的问题,其中大多数都在后端处理验证。
我希望用户看到输入的数据是否错误!
提前致谢。
I am used to using the validate object in ASP .Net to check the users input before I would execute the sp to insert the data into the DB.
How does one go about using a validate object in a win application?
I am using:
- VS C# 2008 express
- MS SQL express that comes with the above.
I search the questions by other user and most of them deal with validation on the back-end.
I would like the user to see that the inputed data is wrong if it is!
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试查看 ErrorProvider 类。这与 ASP.NET 验证器的工作方式类似。
Try looking at the ErrorProvider class. This works in a similar manner to ASP.NET validators.