从字符串中获取整数值 Asp.Net Mvc

发布于 2024-10-06 14:09:39 字数 190 浏览 3 评论 0原文

我想从字符串地址中获取整数值。例如

http://www.testtest.com/?page=12

在这里,我想要在这个地址中取“12”。

我怎样才能在 ASP.NET MVC 中做到这一点?

I want to take the integer value from the string address. for example

http://www.testtest.com/?page=12

here, i want to take "12" in this address.

How can i do this in asp.net mvc ?

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

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

发布评论

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

评论(2

难得心□动 2024-10-13 14:09:39

在控制器中,创建一个以 int 作为参数的方法

public ActionResult Index(int page)
{
    // Do something
}

In your controller, create a method with int as a parameter

public ActionResult Index(int page)
{
    // Do something
}
胡大本事 2024-10-13 14:09:39

@Ardman是正确的,MVC将翻译查询字符串中的值并将其转换为ActionResult函数中的变量。

但请注意,提供的示例需要传递一个名为 page 的 int,因此您可以执行以下操作来克服此问题。

public ActionResult Index(int? page)
{
    if(page.HasValue())
    {
        // Do somthing with the var
    }
    // Do something
}

您也可以使用旧方法,

public ActionResult Index()
{
    var Page Request.QueryString["page"]; //return page query string param as a string
}

希望能提供更多信息。

@Ardman is correct, MVC will translate the value in the query string and convert it to a variable in the ActionResult Function.

Be aware though, the example provided requires an int called page to be passed so you can do the following to overcome this.

public ActionResult Index(int? page)
{
    if(page.HasValue())
    {
        // Do somthing with the var
    }
    // Do something
}

You can also use the old method,

public ActionResult Index()
{
    var Page Request.QueryString["page"]; //return page query string param as a string
}

Hope that provides a little more info.

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