Asp.Net 数据绑定和会话条件逻辑
您好,我正在尝试根据会话对象和数据绑定属性设置列表视图项模板中按钮的可见性
<asp:Button ID="deleteCommentButton" runat="server" Text="Delete Comment"
CssClass="redButton"
ToolTip="<%# Session[1].ToString() %>"
Visible="<%# Session[1].ToString() == Bind("fullname") ? true : false %>"
style="float:right; margin-left:5px; margin-top:-25px;"
onclick="deleteCommentButton_Click" />
,但我收到错误。 。有什么建议吗?
Hello There I'm trying to set the visibility of button in list view item template based on the session object and databound property
<asp:Button ID="deleteCommentButton" runat="server" Text="Delete Comment"
CssClass="redButton"
ToolTip="<%# Session[1].ToString() %>"
Visible="<%# Session[1].ToString() == Bind("fullname") ? true : false %>"
style="float:right; margin-left:5px; margin-top:-25px;"
onclick="deleteCommentButton_Click" />
But I'm getting errors . . Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请尝试这个
Please try this