简体   繁体   中英

Master Page CSS and Javascript doesn't work

I'm not pretty sure what I've done wrong here every thing seems fine but once I added the absolute path for it it sopped working neither the pages within the same folder nor the pages in other folders

<link id="Link1" type="text/css" rel="stylesheet" href="~/styles/Master.css" runat="server"/>
        <link id="Link2" rel="stylesheet" type="text/css" href="~/styles/sooperfish.css" media="screen" runat="server"/>
        <link id="Link3" rel="stylesheet" type="text/css" href="~/styles/sooperfish-theme-large.css" media="screen" runat="server"/>

Did you tried

...href="<%=ResolveUrl("~")%>styles/Master.css"...

This works for me normally.

This is because the application home path is with a subdirectory in it and it cannot resolve it through the browser.

Hope it helps.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM