Css file is on the Root in the Content/CSS/Site.css folder. Now I am using T4MVC.tt for strongly typed names like
<link href="<%: Links.Content.CSS.Site_css %>" rel="stylesheet" type="text/css" />
Page is not rendering CSS at all. But if I remove "" on href like
<link href=<%: Links.Content.CSS.Site_css %> rel="stylesheet" type="text/css" />
everything is working fine but I don't get any Intelli for T4MVC which I don't want.
Any help on this.
Thanks
View Complete Post