In my masterpage, I use the code binding expression shown below so that aspx pages not in the same directory as the masterpage are able to load properly.
To provide further context, this is an "ASP.NET Website" and not MVC. I verified that I was not able to apply "Microsoft ASP.NET Web Optimization Framework" to my website because it is designed for MVC.
Is there another way supply the href attribute value without using a code binding expression (otherwise known as a code nugget)?
<link
href="<%# Page.ResolveURL("/~Theme/redmond/jquery-ui-1.10.3.custom.min.css") %>"
rel="stylesheet" type="text/css" />