【发布时间】:2014-04-18 03:17:25
【问题描述】:
在本地主机上运行我的 ASP.NET 网站时,我收到以下错误..
Parser Error Message: The file '/MPage.master' does not exist.
Line 1: <%@ page title="" language="VB" masterpagefile="~/MPage.master" autoeventwireup="false" inherits="Page1, App_Web_rscnlqny" %>
我可以使用以下方法解决此问题:
<%@ page title="" language="VB" masterpagefile="./MPage.master" autoeventwireup="false" inherits="Page1, App_Web_rscnlqny" %>
但是在这样做之后我得到了错误:
Parser Error Message: Could not load the assembly 'App_Web_hipf5z3e'. Make sure that it is compiled before accessing the page.
Line 1: <%@ master language="VB" inherits="MPage, App_Web_hipf5z3e" %>
我该如何解决这个问题??
【问题讨论】:
标签: asp.net visual-studio-2010 iis localhost parse-error