我在Webform中使用ASP.NET MVC 5.2.2.0(C#)。
当我按照此步骤操作时:right click solution -> Add -> New item... -> create new webform
调试完成后,当我在网址上输入" localhost / webform1.aspx" 时,该工作没有问题。
但是,当我这样做时:right click Views\Home folder -> Add -> Web form -> ok
在HomeController.cs
public ActionResult Test()
{
return View("webform2");
}
在RouteConfig.cs
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.IgnoreRoute("{WebForm}.aspx/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
当我在网址上输入" localhost / home / test" 时,它给了我一个错误:
The view at '~/Views/home/webform2.aspx must derive from ViewPage, ViewPage<TModel>...'
我的问题是:不能在Views \ Home文件夹中创建webform吗?
如果可能的话,你能告诉我怎么做吗?
谢谢!
答案 0 :(得分:0)
By default Views
folder have web.config file that blocks access to all items in that folder an below.
Fix: