母版页有问题
<configuration>
<connectionStrings>
<add name="AdventureWorks" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\AdventureWorksLT2008_Data.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient"/>
</connectionStrings>
<system.web>
<pages masterPageFile="Navigation.master"/>
<compilation debug="true" targetFramework="4.0"/>
</system.web>
</configuration>
这里不允许虚拟路径“Navigation.master”。
我做错了什么?
<configuration>
<connectionStrings>
<add name="AdventureWorks" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\AdventureWorksLT2008_Data.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient"/>
</connectionStrings>
<system.web>
<pages masterPageFile="Navigation.master"/>
<compilation debug="true" targetFramework="4.0"/>
</system.web>
</configuration>
The Virtual path "Navigation.master" is not allowed here..
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 Microsoft 文档,
masterPageFile
属性:所以,你必须指定一个相对路径。例如,这样的事情:
According to Microsoft documentation,
masterPageFile
attribute:So, you have to specify a relative path. For example, something like this:
尝试添加:
〜/something.master
Try adding:
˜/something.master