I just started my first Asp.Net app and am facing a problem after writing less than 30 lines of code
When I run the app in VS 2010 (F5 or Ctrl-F5) the stylesheet is not applied. If I build deployment package and copy it to virtual directory it works. The <head> of the page is:
<head runat="server">
<title>Test</title>
<link href="loginStyle.css" runat="server" rel="Stylesheet" type="text/css" />
</head>
I have tried with different combination of runat. I started with an empty app.
Please help.
TIA