I have placed a .ico and a .png file in the folder /Content/Ico
and I have the following in my _layout.cshtml
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="/Content/Ico/favicon.ico">
<link rel="icon" type="image/png" href="/Content/Ico/tick-circle.png">
a) Is there some way for me to specify how long these favicons are cached for? Should I use some kind of web.config file inside the /Content folder?
b) Some of my code uses the syntax "<link href="@Url.Content("~/Content/ ...
Should I be using @Url.Content
? What's the difference between using that and just specifying /Content
in the href ?