我修改了我的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!我该如何解决这个问题?