Reputation: 218752
Is there anyway i can mention which CSS file should be attached to my Page automatically when running A Page with ASP.NET Themes /Skins ? I want to associate my own CSS which resides in a folder other than the APP_Themes Folder to the Page
Upvotes: 0
Views: 355
Reputation: 15253
Try this:
<link href="styles/common/mystyle.css" rel="stylesheet"
type="text/css" media="screen, projection" />
Upvotes: 1