从字符串中获取整数值 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在控制器中,创建一个以
int
作为参数的方法In your controller, create a method with
int
as a parameter@Ardman是正确的,MVC将翻译查询字符串中的值并将其转换为ActionResult函数中的变量。
但请注意,提供的示例需要传递一个名为 page 的 int,因此您可以执行以下操作来克服此问题。
您也可以使用旧方法,
希望能提供更多信息。
@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.
You can also use the old method,
Hope that provides a little more info.