I read about how to work with SqlDataSource objects by adding properties to the markup, and for the ConnectionString property, the author used something like
<asp:SqlDataSource ... ConnectionString="<%$ ConnectionStrings:lyric %>" ... >
Using <% $%> is new to me, and the author really didnโt explain it. I mean, I see quite easily what he does in this case.
But I want to learn the syntax inside <% $%> to access other things in Web Config. I donโt know what this type of markup is called, so I canโt use it. It's hard for me to find him.
Do tags like <% @%>, <% #%> and <% $%> have a special blanket name? (so that I can find out other options) Is there a specific name for <% $%>? (so that I can look and learn the syntax)
Thanks in advance
source share