Click here to Skip to main content
15,891,423 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All!

I'm using asp.net theme in my project. in a web config, declaring the theme and cssStyleSheetTheme as default.
<pages theme="Default" styleSheetTheme="Default"></pages>



in content page, css references comes twice. one start of the head tag, second under of the title tag.

is there anybody who could solve this problem?


p.s: sorry for my bad english.
Posted

1 solution

Try using only one of the two attributes at once:

<pages theme="Default" />

or
<pages styleSheetTheme="Default" />


Take a look at: Working with Themes in ASP.NET 2.0[^]

Hope it helps.

Ahmed Djobby.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900