如何在母版页标题中包含jquery而不出现路径问题?
我已经尝试过这个
<head id="Head1" runat="server">
<title>Back Office</title>
<link href="~/Styles/MasterPage.css" rel="stylesheet" type="text/css" />
<link href="Styles/custom-theme/jquery-ui-1.8.12.custom.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="<%= Page.ResolveClientUrl("~/scripts/jquery-1.5.1.min.js") %>"></script>
<asp:ContentPlaceHolder ID="HeadContent" runat="server">
</asp:ContentPlaceHolder>
</head>
错误消息是
我想太多了,只是找到使用这个 对不起
I have tried this
<head id="Head1" runat="server">
<title>Back Office</title>
<link href="~/Styles/MasterPage.css" rel="stylesheet" type="text/css" />
<link href="Styles/custom-theme/jquery-ui-1.8.12.custom.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="<%= Page.ResolveClientUrl("~/scripts/jquery-1.5.1.min.js") %>"></script>
<asp:ContentPlaceHolder ID="HeadContent" runat="server">
</asp:ContentPlaceHolder>
</head>
The error message is
I think too much, it is just find using this
sorry
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看来,您正在尝试动态向页面添加控件。在这种情况下,您可以使用以下代码
It seems that, you are trying to add controls to page dynamically. In this case, you can use the below code
尝试将 DataBinding 与 ResolveUrl 一起使用
然后在后面的代码中调用标头的 Databind
如果您开始收到有关 ViewState 的错误,您可能需要在标头上禁用它。
Try using DataBinding with ResolveUrl
Then in your code behind call the Header's Databind
If you start getting errors regarding the ViewState you may need to disable it on the header.