家庭控制器方法参数未显示

时间:2017-04-20 13:09:51

标签: c# asp.net-mvc methods parameters controller

我修改了我的MVC Web应用程序(名为“webapp”)中的home控制器中的about方法,如下所示

public String About(String x)
{
    return "Hello this is the About action and the parameter you entered is "+x;
}

但是,当我在网络浏览器的网址中将网络应用作为“http://localhost/WebApplication3/Home/About/10”运行时 输出是

  

您好,这是关于操作,您输入的参数是

在这种情况下输出没有显示参数值10!我该如何解决这个问题?

0 个答案:

没有答案