[RESOLVED] Publishing ASP.Net
Hi all,
When running my ASP.Net project in debug mode all appears in perfect order, however after pbulishing the project to Windows Web Server 2008 R2 (IIS7) I get the that the style sheet being referenced by Site.Master is not loaded.
Code:
<head runat="server">
<title></title>
<link href="~/Styles/Site.css" rel="stylesheet" type="text/css" />
<asp:ContentPlaceHolder ID="HeadContent" runat="server">
</asp:ContentPlaceHolder>
</head>
I've confirmed the correct paths and file names on numerous occasions, but to no avail.
Any advice?
Thanks in advance.
Re: [RESOLVED] Publishing ASP.Net
Hey,
Have you been able to figure out what the problem was then? Or just narrow down the cause of the problem?
When you try and access the css file directly in the browser, what response do you get from the server? A 401? What?
Gary