I was wondering if it was possible to define and use a variable in your html using C# tags.
So for instance
<% String var = "simpleString"; %>
<link rel="stylesheet" type="text/css" href="style.css?v=<%Response.Write(var);%>" />
I have been trying to get something like this to work. When I write it like
<% String var = "pineapples"; Response.Write(var);%>
it works, but when I write them in separate tags it doesn't seem to read it as a variable.