我正在开发可视网页开发者2010快递上的MVC3应用程序, 通过在MVC2上迁移我的MVC3(cshtml)文件。
它在使用模拟器的本地系统上运行良好,但是一旦我在azure上部署应用程序,它就会产生运行时错误。
示例:
The layout page "~/Views/Shared/test_page.cshtml" could not be found at the following path: "~/Views/Shared/test_page.cshtml".
Source Error:
Line 8: //Layout = "~/Views/Shared/upload.cshtml";
Line 9: //Layout = "~/Views/Shared/_Layout2.cshtml";
Line 10: Layout = "~/Views/Shared/test_page.cshtml";
Line 11: }
Line 12: else
_ViewStart.cshtml file
@{
string AccId = Request.QueryString["AccId"].ToString();
if (AccId=="0")
{
//Layout = "~/Views/Shared/upload.cshtml";
//Layout = "~/Views/Shared/_Layout2.cshtml";
Layout = "~/Views/Shared/test_page.cshtml";
}
else
{
string LayOutPagePath = MVCTest.Models.ComponentClass.GetLayOutPagePath(AccId);
Layout = LayOutPagePath;
}
}
.........
然而页面存在,并且在天蓝色模拟器上工作正常,但在天蓝色云中却没有。
@{
var result = "1234567890";
var temp_xml = MVCTest.Models.ComponentClass.GetTemplateAndTheme("1");//returning xml
string LayOutPagePath = MVCTest.Models.ComponentClass.GetLayOutPagePath("1");//returning string
}
@RenderBody()
<h1>test_page</h1>
<h4>@temp_xml</h4>
<h4>@result</h4>
<h4>@LayOutPagePath</h4>
答案 0 :(得分:1)
我在这里找到了我的解决方案.. 当我在MVC2上创建cshtml文件时,我手动将扩展名从aspx更改为cshtml。 其余的你会从下面的链接中理解。