Hi,
I want to know what is imported style sheets in ASP.Net. How to Link?
Thanks
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Hemant KumarPosted Sep 23, 2011, 2:09 AM
Import CSS into your ASP.NET
Either ways will do for Web Form and Master Page. Place this in the pages instead of user controls.
The most common way is:
You will be suprised that by using the top code is actually compatible with older browsers not really on new browsers like IE 7 or FireFox 2.0.
In order to make sure you can support both old and new browsers, add in a new code just below that tag.
@import "css/sgdotnet.css";
Then you will not face any css problems anymore. Enjoy.