When using link element the asp does not process <%= CssVersion %> but interpret it as literal string
<link href="../../css/style01.css?<%= CssVersion %>" rel="stylesheet" type="text/css">
the output of the above is
<link type="text/css" rel="stylesheet" href="../../css/style01.css?<%= CssVersion >">
But when this is used
<script language="javascript" src="../../js/tiutil_1.0.js?<%= CssVersion %>" type="text/javascript"></script>
It then print out the correctly as
<script type="text/javascript" src="../../js/tiutil_1.0.js?220409" language="javascript"></script>
Any idea why ?
Thanks
I don’t why this behaviour, but I found an alternate solution