Ok so I have this string thats going to be an attribute of script tag:
path = "<%= this.ResolveUrl('~/" + path + "') %>";
only problem is when I dynamically generate the tag it turns into:
<script src="<%= this.ResolveUrl('~/Scripts/jquery.js') %>" type="text/javascript"></script>
I don't want the <
to be there I want an < to be there...
How can I fix this to generate the < instead of <
I have already tried escaping it by using @"<"
and that doesn't work.
Any suggestions?