css style sheets not working

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?SmVycnkgQw==?=

    css style sheets not working

    I have a machine running IIS 6.0. I just replaced the web.config and several
    aspx pages in the application and now the style sheets are not working. the
    images from the themes work but not the css files.

    Any help.

    --
    Jerry
  • Stan

    #2
    Re: css style sheets not working

    On 17 Apr, 23:40, Jerry C <jerr...@nospam .nospamwrote:
    I have a machine running IIS 6.0. I just replaced the web.config and several
    aspx pages in the application and now the style sheets are not working. the
    images from the themes work but not the css files.
    >
    Any help.
    >
    --
    Jerry
    Make sure that any css files are in the App_Themes/<theme namefolder.

    Comment

    • Steven Cheng [MSFT]

      #3
      RE: css style sheets not working

      Hi Jerry,

      As for the ASP.NET application, how did you originally reference those css
      style sheets? Are you using the Theme feature to bind the stylesheets(put
      them in Theme folder and let them be linked automatically)?

      By default, style sheets under Theme folder will be linked into page(that
      has applied the certain Theme) automatically. To verify this, you can
      visit the certain page(that doesn show style corrrectly) and open its html
      source in client browser to see whether the style sheet link is displayed
      in the client source.

      Also, have you checked the aspx page template to see whether there is any
      difference between the original one?

      Sincerely,

      Steven Cheng

      Microsoft MSDN Online Support Lead


      Delighting our customers is our #1 priority. We welcome your comments and
      suggestions about how we can improve the support we provide to you. Please
      feel free to let my manager know what you think of the level of service
      provided. You can send feedback directly to my manager at:
      msdnmg@microsof t.com.

      =============== =============== =============== =====
      Get notification to my posts through email? Please refer to
      Find official documentation, practical know-how, and expert guidance for builders working and troubleshooting in Microsoft products.

      ications.

      =============== =============== =============== =====
      This posting is provided "AS IS" with no warranties, and confers no rights.

      --------------------
      >Thread-Topic: css style sheets not working
      >thread-index: Acig2/jPmvbRmVNLSnuZK xfmRujgkQ==
      >X-WBNR-Posting-Host: 70.147.65.238
      >From: =?Utf-8?B?SmVycnkgQw= =?= <jerryed@nospam .nospam>
      >Subject: css style sheets not working
      >Date: Thu, 17 Apr 2008 15:40:01 -0700
      >
      >I have a machine running IIS 6.0. I just replaced the web.config and
      several
      >aspx pages in the application and now the style sheets are not working.
      the
      >images from the themes work but not the css files.
      >
      >Any help.
      >
      >--
      >Jerry
      >

      Comment

      • =?Utf-8?B?SmVycnkgQw==?=

        #4
        RE: css style sheets not working

        Thank you for the replys.

        The web.config file had two entries like:
        <location path="styles.cs s">
        <system.web>
        <authorizatio n>
        <allow users="*"/>
        </authorization>
        </system.web>
        </location>
        On the development machine it worked OK but when I droped this web.config
        file on another server it did not. It did not like duplicate location path
        entries for the same file. Also FYI if the same css file is in the main
        directory and in the App_Themes/theme directory it causes problems.

        Thank you for your help.
        --
        Jerry


        "Steven Cheng [MSFT]" wrote:
        Hi Jerry,
        >
        As for the ASP.NET application, how did you originally reference those css
        style sheets? Are you using the Theme feature to bind the stylesheets(put
        them in Theme folder and let them be linked automatically)?
        >
        By default, style sheets under Theme folder will be linked into page(that
        has applied the certain Theme) automatically. To verify this, you can
        visit the certain page(that doesn show style corrrectly) and open its html
        source in client browser to see whether the style sheet link is displayed
        in the client source.
        >
        Also, have you checked the aspx page template to see whether there is any
        difference between the original one?
        >
        Sincerely,
        >
        Steven Cheng
        >
        Microsoft MSDN Online Support Lead
        >
        >
        Delighting our customers is our #1 priority. We welcome your comments and
        suggestions about how we can improve the support we provide to you. Please
        feel free to let my manager know what you think of the level of service
        provided. You can send feedback directly to my manager at:
        msdnmg@microsof t.com.
        >
        =============== =============== =============== =====
        Get notification to my posts through email? Please refer to
        Find official documentation, practical know-how, and expert guidance for builders working and troubleshooting in Microsoft products.

        ications.
        >
        =============== =============== =============== =====
        This posting is provided "AS IS" with no warranties, and confers no rights.
        >
        --------------------
        Thread-Topic: css style sheets not working
        thread-index: Acig2/jPmvbRmVNLSnuZK xfmRujgkQ==
        X-WBNR-Posting-Host: 70.147.65.238
        From: =?Utf-8?B?SmVycnkgQw= =?= <jerryed@nospam .nospam>
        Subject: css style sheets not working
        Date: Thu, 17 Apr 2008 15:40:01 -0700

        I have a machine running IIS 6.0. I just replaced the web.config and
        several
        aspx pages in the application and now the style sheets are not working.
        the
        images from the themes work but not the css files.

        Any help.

        --
        Jerry
        >
        >

        Comment

        • Steven Cheng [MSFT]

          #5
          RE: css style sheets not working

          Thanks for your reply Jerry,

          Yes, the further information you provided is very important. That remind me
          of the potentitial cause from forms authentication protection on pages or
          resource in the application.

          So you're using Forms authentication, and by default deny user="?",
          correct? Is the application hosted in IIS on both machine? Normally asp.net
          forms authenticaction won't affect those static files(such as css ,
          jscript...) because only those ASP.NET documents(aspx, ascx ..) will be
          forwarded to ASP.NET runtime for processing. However, you can check on the
          server to see whether the IIS extention mapping has bee changed that those
          static files will also be processed by ASP.NET runtime.

          For testing , you can also first turn off forms authentication protection
          on all page(set allow users="*") to see whether the style sheet can be
          accessed correctly. Also, since those Theme files are for displaying
          only, I suggest you consider add a rule (through <location) to allow all
          users access for the Theme folder. e.g.

          <location path="App_Theme s">
          <system.web>
          <authorizatio n>
          <allow users="*"/>
          </authorization>
          </system.web>
          </location>


          If you have any other findings, welcome to post here.

          Sincerely,

          Steven Cheng

          Microsoft MSDN Online Support Lead


          Delighting our customers is our #1 priority. We welcome your comments and
          suggestions about how we can improve the support we provide to you. Please
          feel free to let my manager know what you think of the level of service
          provided. You can send feedback directly to my manager at:
          msdnmg@microsof t.com.

          =============== =============== =============== =====
          Get notification to my posts through email? Please refer to
          Find official documentation, practical know-how, and expert guidance for builders working and troubleshooting in Microsoft products.

          ications.

          =============== =============== =============== =====
          This posting is provided "AS IS" with no warranties, and confers no rights.


          --------------------
          >From: =?Utf-8?B?SmVycnkgQw= =?= <jerryed@nospam .nospam>
          >References: <E87D5CC7-D556-4B0D-AE29-E2F719654C9A@mi crosoft.com>
          <IMqx0SQoIHA.90 16@TK2MSFTNGHUB 02.phx.gbl>
          >Subject: RE: css style sheets not working
          >Date: Fri, 18 Apr 2008 05:28:01 -0700
          >
          >Thank you for the replys.
          >
          >The web.config file had two entries like:
          > <location path="styles.cs s">
          > <system.web>
          > <authorizatio n>
          > <allow users="*"/>
          > </authorization>
          > </system.web>
          > </location>
          >On the development machine it worked OK but when I droped this web.config
          >file on another server it did not. It did not like duplicate location path
          >entries for the same file. Also FYI if the same css file is in the main
          >directory and in the App_Themes/theme directory it causes problems.
          >
          >Thank you for your help.
          >--
          >Jerry
          >
          >
          >"Steven Cheng [MSFT]" wrote:
          >
          >Hi Jerry,
          >>
          >As for the ASP.NET application, how did you originally reference those
          css
          >style sheets? Are you using the Theme feature to bind the
          stylesheets(put
          >them in Theme folder and let them be linked automatically)?
          >>
          >By default, style sheets under Theme folder will be linked into
          page(that
          >has applied the certain Theme) automatically. To verify this, you can
          >visit the certain page(that doesn show style corrrectly) and open its
          html
          >source in client browser to see whether the style sheet link is
          displayed
          >in the client source.
          >>
          >Also, have you checked the aspx page template to see whether there is
          any
          >difference between the original one?
          >>
          >Sincerely,
          >>
          >Steven Cheng
          >>
          >Microsoft MSDN Online Support Lead
          >>
          >>
          >Delighting our customers is our #1 priority. We welcome your comments
          and
          >suggestions about how we can improve the support we provide to you.
          Please
          >feel free to let my manager know what you think of the level of service
          >provided. You can send feedback directly to my manager at:
          >msdnmg@microsof t.com.
          >>
          >============== =============== =============== ======
          >Get notification to my posts through email? Please refer to
          >>
          http://msdn.microsoft.com/subscripti...ult.aspx#notif
          >ications.
          >>
          >============== =============== =============== ======
          >This posting is provided "AS IS" with no warranties, and confers no
          rights.
          >>
          >--------------------
          >Thread-Topic: css style sheets not working
          >thread-index: Acig2/jPmvbRmVNLSnuZK xfmRujgkQ==
          >X-WBNR-Posting-Host: 70.147.65.238
          >From: =?Utf-8?B?SmVycnkgQw= =?= <jerryed@nospam .nospam>
          >Subject: css style sheets not working
          >Date: Thu, 17 Apr 2008 15:40:01 -0700
          >
          >I have a machine running IIS 6.0. I just replaced the web.config and
          >several
          >aspx pages in the application and now the style sheets are not working.
          >the
          >images from the themes work but not the css files.
          >
          >Any help.
          >
          >--
          >Jerry
          >
          >>
          >>
          >

          Comment

          • Steven Cheng [MSFT]

            #6
            RE: css style sheets not working

            Hi Jerry,

            Have you got any progress on this issue? If there is anything else we can
            help, welcome to post here.

            Sincerely,

            Steven Cheng

            Microsoft MSDN Online Support Lead


            Delighting our customers is our #1 priority. We welcome your comments and
            suggestions about how we can improve the support we provide to you. Please
            feel free to let my manager know what you think of the level of service
            provided. You can send feedback directly to my manager at:
            msdnmg@microsof t.com.

            =============== =============== =============== =====
            Get notification to my posts through email? Please refer to
            Find official documentation, practical know-how, and expert guidance for builders working and troubleshooting in Microsoft products.

            ications.

            =============== =============== =============== =====
            This posting is provided "AS IS" with no warranties, and confers no rights.


            --------------------
            >From: stcheng@online. microsoft.com (Steven Cheng [MSFT])
            >Organization : Microsoft
            >Date: Mon, 21 Apr 2008 04:46:04 GMT
            >Subject: RE: css style sheets not working
            >
            >Thanks for your reply Jerry,
            >
            >Yes, the further information you provided is very important. That remind
            me
            >of the potentitial cause from forms authentication protection on pages or
            >resource in the application.
            >
            >So you're using Forms authentication, and by default deny user="?",
            >correct? Is the application hosted in IIS on both machine? Normally
            asp.net
            >forms authenticaction won't affect those static files(such as css ,
            >jscript...) because only those ASP.NET documents(aspx, ascx ..) will be
            >forwarded to ASP.NET runtime for processing. However, you can check on the
            >server to see whether the IIS extention mapping has bee changed that
            those
            >static files will also be processed by ASP.NET runtime.
            >
            >For testing , you can also first turn off forms authentication protection
            >on all page(set allow users="*") to see whether the style sheet can be
            >accessed correctly. Also, since those Theme files are for displaying
            >only, I suggest you consider add a rule (through <location) to allow all
            >users access for the Theme folder. e.g.
            >
            ><location path="App_Theme s">
            > <system.web>
            > <authorizatio n>
            > <allow users="*"/>
            > </authorization>
            > </system.web>
            > </location>
            >
            >
            >If you have any other findings, welcome to post here.
            >
            >Sincerely,
            >
            >Steven Cheng
            >
            >Microsoft MSDN Online Support Lead
            >
            >
            >Delighting our customers is our #1 priority. We welcome your comments and
            >suggestions about how we can improve the support we provide to you. Please
            >feel free to let my manager know what you think of the level of service
            >provided. You can send feedback directly to my manager at:
            >msdnmg@microso ft.com.
            >
            >============== =============== =============== ======
            >Get notification to my posts through email? Please refer to
            >http://msdn.microsoft.com/subscripti...ault.aspx#noti
            f
            >ications.
            >
            >============== =============== =============== ======
            >T

            Comment

            Working...