asp.net mvc 3 在控制器中使用 IsInt()

发布于 2024-12-02 23:20:12 字数 90 浏览 1 评论 0原文

我想检查我的变量是否是控制器中的整数。在视图中,我可以轻松使用 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 技术交流群。

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

发布评论

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

评论(2

甲如呢乙后呢 2024-12-09 23:20:12

如果添加以下命名空间,您可以在控制器中使用它。

using System.Web.Webpages;

根据您的使用情况,您可能需要使用 Int32.TryParse() 代替。

If you add the following namespace you can use it in your controller.

using System.Web.Webpages;

Depending on your usage you might want to use Int32.TryParse() instead.

心奴独伤 2024-12-09 23:20:12
int result;
if (int.TryParse(x, out result))
{
    // do something with result, which is a "strong" int
}
int result;
if (int.TryParse(x, out result))
{
    // do something with result, which is a "strong" int
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文