Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > css not applied + lost image

Reply
Thread Tools

css not applied + lost image

 
 
Ian Gordon
Guest
Posts: n/a
 
      08-07-2003
Hello,

Here's a weird one that I can't quite put my finger on, but wonder if anyone
may enlighten me?

My ASP.NET site is all working functionally on site, but for some reason,
none of the images are being shown in the browser when it's running, and
also the style sheet referenced in the html header on each page is not being
applied to the text. So, it works but looks shoddy...

There is nothing wrong with the html - I've taken the code from 'view
source' in browser, made a new .htm page from it in the app directory, and
when I view it, the images are there and the css formatting is as it should
be.

The browser is IE version 6, and the 'show pictures' option is checked so
it't not that that prevents the image from being rendered.

Any ideas / pointers much appreciated.

Ian




 
Reply With Quote
 
 
 
 
MS News \(MS LVP\)
Guest
Posts: n/a
 
      08-07-2003
If you are using
<asp:Image ImageUrl="..." Runat="server"></asp:Image>

make sure you have Runat="server"


"Ian Gordon" <> wrote in message
news:EOtYa.4$...
> Hello,
>
> Here's a weird one that I can't quite put my finger on, but wonder if

anyone
> may enlighten me?
>
> My ASP.NET site is all working functionally on site, but for some reason,
> none of the images are being shown in the browser when it's running, and
> also the style sheet referenced in the html header on each page is not

being
> applied to the text. So, it works but looks shoddy...
>
> There is nothing wrong with the html - I've taken the code from 'view
> source' in browser, made a new .htm page from it in the app directory, and
> when I view it, the images are there and the css formatting is as it

should
> be.
>
> The browser is IE version 6, and the 'show pictures' option is checked so
> it't not that that prevents the image from being rendered.
>
> Any ideas / pointers much appreciated.
>
> Ian
>
>
>
>



 
Reply With Quote
 
 
 
 
Ian Gordon
Guest
Posts: n/a
 
      08-08-2003


With regards, Ian



*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 
Reply With Quote
 
John Saunders
Guest
Posts: n/a
 
      08-08-2003
Ian,

Did you mean to respond? If so, your response was blank.

John Saunders


*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 
Reply With Quote
 
Ian Gordon
Guest
Posts: n/a
 
      08-08-2003
oops!

Right, yep, the urls are all correct, and runat="server" is set as
required. Strange.

the CSS file link url is also correct -the web forms and css file are in
same directory, and link is as below:
<LINK href="mycss.css" type="text/css" rel="stylesheet">

Why would this not be applying the relevant css formatting at run-time?
It works fine on 2 other machines I've tested on.

With regards, Ian



*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 
Reply With Quote
 
John Saunders
Guest
Posts: n/a
 
      08-08-2003
"Ian Gordon" <> wrote in message
news:...
> oops!
>
> Right, yep, the urls are all correct, and runat="server" is set as
> required. Strange.
>
> the CSS file link url is also correct -the web forms and css file are in
> same directory, and link is as below:
> <LINK href="mycss.css" type="text/css" rel="stylesheet">
>
> Why would this not be applying the relevant css formatting at run-time?
> It works fine on 2 other machines I've tested on.


Ok, now that we're pretty sure that the css file is found and valid (though
you might want to throw in some JavaScript to confirm this), you have the
question of why it works differently on different machines. Keep in mind
that the "c" in "css" stands for "Cascading". You may have inherited styles
from another stylesheet interfering with yours. Although "mycss.css" may be
the same on all machines, one of the other stylesheets may not be.

See if you can create a test <div> at the very top of the .aspx file which
uses one of the styles from mycss. If that doesn't work, you'll then have to
track down all the other ways CSS might be giving you something unexpected.
For instance, styles on the <body> tag, other style rules for "div", etc.
--
John Saunders
Internet Engineer



 
Reply With Quote
 
Yan-Hong Huang[MSFT]
Guest
Posts: n/a
 
      08-11-2003
Hello Ian,

John is right here. Since the same code behaviors differently in machines,
we'd better compare them first. I suggest you:

1) Create a simplest testing page in that machine to test it could show
image well
2) If yes, check CSS inherited tree to make sure that it is the same as
John suggested.
3) If no, please create a simple page to just contain one image to test if
it could be shown.
4) If still no, my suggest is to reinstall asp.net on your system. It is
very quick. You could refer to http://support.microsoft.com/?id=306005 for
detailed steps.

If the problem still there, please post here. Thanks very much.

Best regards,
Yanhong Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
!From: Ian Gordon <>
!References: <>
!X-Newsreader: AspNNTP 1.50 (ActionJackson.com)
!Subject: Re: css not applied + lost image
!Mime-Version: 1.0
!Content-Type: text/plain; charset="us-ascii"
!Content-Transfer-Encoding: 7bit
!Message-ID: <>
!Newsgroups: microsoft.public.dotnet.framework.aspnet
!Date: Fri, 08 Aug 2003 11:13:51 -0700
!NNTP-Posting-Host: actionjackson133.dsl.frii.net 216.17.147.133
!Lines: 1
!Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP12.phx.gbl
!Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:166217
!X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
!
!oops!
!
!Right, yep, the urls are all correct, and runat="server" is set as
!required. Strange.
!
!the CSS file link url is also correct -the web forms and css file are in
!same directory, and link is as below:
!<LINK href="mycss.css" type="text/css" rel="stylesheet">
!
!Why would this not be applying the relevant css formatting at run-time?
!It works fine on 2 other machines I've tested on.
!
!With regards, Ian
!
!
!
!*** Sent via Developersdex http://www.developersdex.com ***
!Don't just participate in USENET...get rewarded for it!
!

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
CSS present in DOM but not applied Flintstone HTML 5 01-18-2008 07:26 PM
CSS not being applied Dave HTML 5 01-14-2008 05:07 AM
CSS styles and images not applied on login page R.A.M. ASP .Net 4 10-12-2007 11:35 AM
CSS applied on a per character basis? Noozer HTML 12 01-19-2005 12:38 AM
div css margins broken when no padding is applied Andrew Crowe HTML 3 12-13-2003 04:17 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57