Ctrl-K, Ctrl-D give me this:
<title>
<%= Html.Encode(ViewData["Title"]) %></title>
Instead what I want it to do is this:
<title><%= Html.Encode(ViewData["Title"]) %></title>
NOTE: no line break between the opening title tag and the opening '<%' tag. What is this '<%' tag called anyway??
I set up some 'Tag Specific Options' that work when the content is text. They don't seem to work when the content is '<%=%>' though.
-Thx