After deploying the web app on MS Server 2008 R2, I noticed that it is not reading the style sheets on any of the pages. The masterpage only contains a ToolkitScriptManager with no styles. However, the source code shows the style links and accessing them directly through the URL works fine.
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<link href="/styles/StyleSheet1.css" type="text/css" rel="stylesheet" />
This issue is consistent across all browsers. While debugging in Visual Studio 2010, the styles are being read correctly. I attempted to modify the references by adding a tilde (~) or removing the first forward slash, but neither had any effect. Despite going through server configurations, I have not been able to resolve this issue. It has been a while since I worked on these configurations, so perhaps there is something I am missing?
http://serverName/WebAppName/styles/StyleSheet1.css
Any insights or solutions would be greatly appreciated. Thank you!