母版页有问题

发布于 2024-11-19 03:17:56 字数 567 浏览 2 评论 0原文

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无边思念无边月 2024-11-26 03:17:56

根据 Microsoft 文档masterPageFile 属性:

指定母版页路径
相对于本地配置
文件。

所以,你必须指定一个相对路径。例如,这样的事情:

<pages masterPageFile="~/Navigation.master"/>

According to Microsoft documentation, masterPageFile attribute:

Specifies the master page path
relative to the local configuration
file.

So, you have to specify a relative path. For example, something like this:

<pages masterPageFile="~/Navigation.master"/>
她说她爱他 2024-11-26 03:17:56

尝试添加:

〜/something.master

Try adding:

˜/something.master

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文