我在现有的MVC应用程序中尝试MVC。我想从'Folder1'中的webform重定向到Controllers文件夹中的MVC Homecontroller,与Folder1相同。
我试过这个,它找不到路径'/'的控制器或者没有实现IController。
UrlHelper urlHelp = new UrlHelper(HttpContext.Current.Request.RequestContext);
Response.Redirect(urlHelp.Action("About", "Home"), false);
甚至尝试过
Response.Redirect(HttpRuntime.AppDomainAppVirtualPath + "Home/Index");
甚至试过这个
UrlHelper urlHelp = new UrlHelper(HttpContext.Current.Request.RequestContext);
Response.Redirect(urlHelp.Action("Index", "Home",new { area = string.Empty }),false);
没有成功..任何人都有想法?
答案 0 :(得分:0)
试试这个?
>>> d2 = json.load(open("text.txt"))
>>> print d2
{u'two': 2, u'one': 1}