<%= Html.ActionLink("Account Page", "Index", new {
controller = "Account", culture = (string)Session[culture],
client = (string)Session[Client], brand = (string)Session[Brand],
storeid = (string)Session[Store] })%>
除IE6外,几乎适用于所有浏览器(IE7 / 8,Mozilla,safari,chrome)。这里的问题是链接显示为文本。
如何解决这个问题? IE6是主要要求之一。
答案 0 :(得分:0)
感谢您的回复,但我发现了问题。导致问题的不是动作链接本身。我为IE6添加了一个javascript(jquery.pngFix.js)作为图像的修复,它导致了问题。删除此脚本后,一切正常。再次感谢您的回复。