-1
我想隱藏的DevExpress AspxPopupControl在pageLoad的時候用戶角色這樣等於人:如何在頁面加載中隱藏AspxPopupControl?
protected void Page_Load(object sender, EventArgs e)
{
if (base.User.IsInRole("Person"))
{
popup1.ShowOnPageLoad = false;
popup2.ShowOnPageLoad = false;
}
}
但它不工作!我怎麼隱藏?我不想讓User In Role Person顯示popup1和popup2。