ASP.NET declare a CSS stylesheet one time only
Posted
by Grant
on Stack Overflow
See other posts from Stack Overflow
or by Grant
Published on 2010-05-09T00:42:15Z
Indexed on
2010/05/09
0:48 UTC
Read the original article
Hit count: 302
Hi, if i have a single CSS stylesheet for a website and only want to declare it once, that is, not use the following code on every aspx page..
<link href="stylesheets/general.css" rel="stylesheet" type="text/css" />
Am i forced to use a .master page? or is there another way to do this..
© Stack Overflow or respective owner