Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
can I write razor code in template...? something like...
<umbraco:Macro runat="server" language="cshtml"> <ul> @{var selected = Array.IndexOf(Request.Url, 'competition') >= 0 ? " class=\"selected\"" : "";<li@Html.Raw(selected)>var selected1 = Array.IndexOf(Request.Url, 'gallery') >= 0 ? " class=\"selected\"" : ""; <li@Html.Raw(selected1) } </ul></umbraco:Macro>
as just now this is giving me error... randering script error...
you can write razor in template like you did.
you have some problem with the macro code.
what should be the result?
you are open new LI before closing the first one.
and the second LI tag is not close
u r right... actually I want to set selected class in particular li tag by checking if url contains a particular word
here is the modifdied code.. but still showing error...
<div class="talent-menu-mid"><umbraco:Macro runat="server" language="cshtml"> <ul>@{ string selected = Array.IndexOf(@Model.Path, 'competition') >= 0 ? " class=\"selected\"" : ""; <[email protected](selected)><a href="/talent-corner/competition/" >Competition</a></li> string selected1 = Array.IndexOf(@Model.Path, 'Participate') >= 0 ? " class=\"selected\"" : ""; <[email protected](selected1)><a href="/talent-corner/participate/">Participate</a></li> string selected2 = Array.IndexOf(@Model.Path, 'Gallery') >= 0 ? " class=\"selected\"" : ""; <[email protected](selected2)><a href="/talent-corner/gallery/">Gallery</a></li>} </ul></umbraco:Macro></div>
can you correct the code.. where am I going wrong?
anybody.. any clue.. what's going wrong?
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
razor in template
can I write razor code in template...? something like...
as just now this is giving me error... randering script error...
you can write razor in template like you did.
you have some problem with the macro code.
what should be the result?
you are open new LI before closing the first one.
and the second LI tag is not close
u r right... actually I want to set selected class in particular li tag by checking if url contains a particular word
here is the modifdied code.. but still showing error...
can you correct the code.. where am I going wrong?
anybody.. any clue.. what's going wrong?
is working on a reply...