I'd like to apply my css file to a my default.aspx.
I'm looking in the document properties, but I can't find the property called stylesheet.
any ideas?
maybe there's another way to apply the css to my web form?
Printable View
I'd like to apply my css file to a my default.aspx.
I'm looking in the document properties, but I can't find the property called stylesheet.
any ideas?
maybe there's another way to apply the css to my web form?
I can't find it in visual express, but It does appear in visual studio 2005 enterprise
Add this to your head section.
<link type="text/css" rel="stylesheet" href="style.css">
You can drag a .css file from your solution explorer on to a page and it will do this for you if you like.
thanks a lot!