As Dante suggests above, maybe change
<%= App.Golbal.VERSION %>
to
<%=App.Golbal.VERSION%>
or
<%=App.Global.VERSION%>
and try this.
Alternatively, as William suggests, set id and runat = server in the link element and apply the value on the script / code server behind.
<link id="lnkCSS" runat="server" media="all" rel="Stylesheet" type="text/css" />
and the script / code server behind, something like
//might need HtmlLink lnkCSS = FindControls("lnkCSS")` lnkCSS.href = "css/reset.min.css?`v=" + App.Global.VERSION;
Enull
source share