您好,我正在尝试根据会话对象和数据绑定属性在列表视图项模板中设置按钮的可见性
<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" />
但是我遇到了错误。. 有什么建议么?