Forum Moderators: not2easy

Message Too Old, No Replies

browser not displaying css styles or images

         

kcrewjap

4:00 pm on Apr 30, 2009 (gmt 0)

10+ Year Member



I have built a web app in asp.net. the app has ran fine in production for the last 6 months. i currently added a new user access to the app and changed the security settings to enable anonymous access. once i did this, all ofa sudden the css style sheets were no longer recognized and the image for the calendar button was showing a red X. wondering what i am missing as nothing REALLY changed accept the user access permissions. here is my Site.Master code

<link rel="stylesheet" type="text/css" href="CSS/Pathfinder.css" />
<link rel="stylesheet" type="text/css" href="CSS/Matrix.css" />
</head>
<body class="Matrix">
<form id="form1" runat="server">
<ajax:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true" />
<%--<asp:PlaceHolder ID="MenuPlaceHolder" runat="server" />--%>
<div class="clsBGLightMediumGrey clsBold clsBorderBlackBottom clsFiveByFivePadding">
<span class="clsTwoByFivePadding">Intake Requirements:</span>
<asp:Hyperlink ID="lnkAdHoc" runat="server" Text="AdHoc Projects" CssClass="lnkMenuGreyBold clsTwoByFivePadding clsTwentyLeftPad" NavigateUrl="~/Intake.aspx" />
<asp:Hyperlink ID="lnkHand" runat="server" Text="Handset Dimension" CssClass="lnkMenuGreyBold clsTwoByFivePadding clsTwentyLeftPad" NavigateUrl="~/HandsetUpdate.aspx" />
<asp:HyperLink ID="lnkMatrix" runat="server" Text="Matrix Upload" CssClass="lnkMenuGreyBold clsTwoByFivePadding clsTwentyLeftPad" NavigateUrl="~/MatrixUpload.aspx" />
<asp:HyperLink ID="lnkReprots" runat="server" Text="Reports" CssClass = "lnkMenuGreyBold clsTwoByFivePadding clsTwentyLeftPad" NavigateUrl="~/Reports.aspx" />
</div>
<asp:contentplaceholder id="ContentPlaceHolder1" runat="server" />
</form>
</body>

swa66

4:39 pm on Apr 30, 2009 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Smells like a server configuration problem.

If you try to access the CSS and images directly with a browser, do you get the content ? If not: nothing CSS can do ...

kcrewjap

5:41 pm on Apr 30, 2009 (gmt 0)

10+ Year Member



yes, i can access both the css file and the images from a browswer.