ASP.NET 4 Parser Error

僤鯓⒐⒋嵵緔 提交于 2019-12-02 06:57:26

you have messed with " try :

   <li><a class='tooltip viewPolicyLink' rel='<%#Eval("key")%>'
                  title='<%#Eval("value")%>'
                  href='<%#ResolveUrl("~/Views/Pages/ViewPolicy.aspx")%>'
                  runat="server"><%#Eval("key")%></a></li>

Double quotes are nested in rel, title, href attributes.

you need to use single quotes when setting tag values that contain the Eval() expression. The reason being is the double quotes that Eval takes.

Try using single quotes for the attributes containing server-side commands:

<li><a class="tooltip viewPolicyLink" rel='<%#Eval("key")%>'
              title='<%#Eval("value")%>'
              href='<%#ResolveUrl("~/Views/Pages/ViewPolicy.aspx")%>'
              runat="server"><%#Eval("key")%></a></li>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!