我想这样做:
<asp:HyperLink NavigateUrl='<%= WebContext.RootUrl %><%= WebContext.CurrentUser.UserName %>' runat="server" Text='<%= GetProfileImage(WebContext.CurrentUser.AccountId) %>'></asp:HyperLink>
但是我收到错误:
this is not scriptlet. will output as
plain text.
当我把鼠标放在我的声明性语句上。
有任何想法吗?谢谢。
您可以使用数据绑定语法<%#%> ;.只要确保您的超
链接是在数据绑定控件中,例如ListView项目模板,或者从
代码隐藏中显式
调用控件上的DataBind()。
原文链接:https://www.f2er.com/aspnet/252969.html