Adding runat="server" is not rendering my server tags <%...%>


I have a masterpage with a few <li> for menu and since I have to set class=selected for the current page, I am using a little server tag to find the url and assign the particular class.

I have total of 10 <li> and not all menu is available to all types of user, I need to toggle few of the <li> if the user is not admin, so I have runat="server" added to them so I can set their visible=false through c#

Here is how it is at a glance:

<li runat="server" id="liBlog" class='<%= Request.Url.AbsoluteUri.EndsWith("/Blog") ? "selected" : "" %>'><a href="/Blog">Group Blog</a></li>
<li runat="server" id="liPoll" class='<%= Request.Url.AbsoluteUri.EndsWith("/Poll") ? "selected" : "" %>'><a href="/Poll">Poll</a></li>
<li id="liInvite" class='<%= Request.Url.AbsoluteUri.EndsWith("/Invite") ? "selected" : "" %>'><a href="/Invite">Invite</a></li>
<li id="liFavourite" class='<%= Request.Url.AbsoluteUri.Contains("/Favourite") ? "selected" : "" %>'><a href="/Favourite">My Favourites</a></li>

The <li> without runat="server" works fine, when on correct page the source code shows class="selected" or class="" as appropriate, the other <li> used to work fine too, until I decided to add the runat="server".

Once I added that runat="server", the whole block of class="" is being sent out to the html page, its not processing the server tags at all! I right click on the html and look at the source, it's being rendered as:

<li id="ctl00_ctl00_ContentPlaceHolder1_liBlog" class="&lt;%= Request.Url.AbsoluteUri.EndsWith(&quot;/Blog&quot;) ? &quot;selected&quot; : &quot;&quot; %&gt;"><a href="/Blog">Group Blog</a></li>

It's pouring out my server tags into the source code!

Why is this behaviour seen? How can I avoid it?

I looked up a lot of similar threads in here and there was nearly nothing in google, so made this, I dont think this is a duplicate question.

link|improve this question

Something upcoming you may be interested in: weblogs.asp.net/scottgu/archive/2010/07/02/… – Nick Craver Jul 30 '10 at 11:35
thanks very much @Nick Craver, I am reading through all the articles on the page and see what helps! thanks! – iamserious Jul 30 '10 at 11:43
interesting.. but but i cannot use its yet! shame! – iamserious Jul 30 '10 at 12:20
feedback

2 Answers

up vote 3 down vote accepted

You can't use the <%= %> syntax inside the properties of tags that have the runat="server" attribute on them.

You either need to:

  • Set the properties via your code-behind
  • Create an Expression Builder (and part 2 and part 3) and use the <%$ %> syntax (note: these are links to stuff I wrote on my blog, so, beware the self link =)
link|improve this answer
Where did you hear about not being able to use them? IIRC (not doing web stuff recently) I did it all the time! – leppie Jul 30 '10 at 11:42
thanks, I am reading up on them, will let you know how it goes.. thanks! – iamserious Jul 30 '10 at 11:46
1  
Holy Batman! For some reason I thought it worked. Testing just gave me: Parser Error Message: Server tags cannot contain <% ... %> constructs. – leppie Jul 30 '10 at 11:50
@leppie - "Parser Error Message: Server tags cannot contain <% ... %> constructs." when I tried to add one, just to check my own sanity! =) – Rob Jul 30 '10 at 11:50
parse error is saying that you cannot user servertags <% %> ? i think you need to add <%= %> or <%# %> depending on normal or databinding tags that you are adding.. – iamserious Jul 30 '10 at 12:22
show 1 more comment
feedback

for your requirement you can also use ASP.NET menu and XmlSiteMap to do the same thing.

link|improve this answer
I so wish I can use .net menu. ideally i would rant about how i am the new worker hired 2 weeks ago and i am put into work with an already existing massive block of code and since i am new, fresh from graduation am also not supposed to use my creativity in case i screw up the whole system, but, as true as it is, its becoming a cliche in this site.... so I am not going to say what cannot be changed.. I want to stick to what i can do now, but thanks anyway! – iamserious Jul 30 '10 at 12:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.