I am trying to link a css to my project, but I am having some problems. I
created a styles.ascx file which contains this code:
<% Control Language="vb"%>
<%
Response.Write("<link rel='stylesheet' type='text/css'
href='styles.css'></link>")
%>
Then I did this to the page I wanted to use the css in:
<%Register TagPrefix="stylesheet" TagName="Style" Src="Styles.ascx"%>
<head>
<stylesheet:Style Runat="server"></stylesheet:style>
</head>
the pages run but it doesn't apply the style sheet. Anyone know any tricks to
making this work.