asp.net mvc 3 在控制器中使用 IsInt()
我想检查我的变量是否是控制器中的整数。在视图中,我可以轻松使用 isInt() 但不能在控制器中使用。我需要有特殊的参考资料才能使用该方法吗?
谢谢。
I would like to check if my variable is an integer in controller. In view I can easily use isInt() but not in the controller. Do I need to have a special reference to use that method?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果添加以下命名空间,您可以在控制器中使用它。
根据您的使用情况,您可能需要使用 Int32.TryParse() 代替。
If you add the following namespace you can use it in your controller.
Depending on your usage you might want to use Int32.TryParse() instead.