在 VB.NET 中,我有一个LinkButton
,单击时会创建一个报告。我们希望根据谁登录到系统来禁用此功能。我有一个会话变量来指示这是否应该可见,但是当我设置时idLinkButton.visible = False
,它没有效果。关于我需要做什么才能打开和关闭它的任何想法?
'code-behind
' in page_load
If Not Convert.ToBoolean(HttpContext.Current.Session("HideReports")) Then
PDFbutton.Visible = True
Else If Convert.ToBoolean(HttpContext.Current.Session("HideReports")) And HttpContext. Current.Session("LoadFromConsole") Then
PDFbutton.Visible = True
end if