asp.net,启用/禁用选项卡面板

发布于 2024-08-30 02:05:00 字数 222 浏览 5 评论 0原文

为什么这不起作用?

<ajaxToolkit:TabPanel Enabled='<%# User.IsInRole("admin") %>'...

虽然这有效:

<asp:TextBox Enabled='<%# User.IsInRole("admin") %>'...

Why isn't this working?

<ajaxToolkit:TabPanel Enabled='<%# User.IsInRole("admin") %>'...

While this works:

<asp:TextBox Enabled='<%# User.IsInRole("admin") %>'...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花开浅夏 2024-09-06 02:05:00

第一个示例是在绑定上下文(绑定控件)内吗?也许您想使用输出指令而不是绑定指令?

<ajaxToolkit:TabPanel Enabled='<%= User.IsInRole("admin") %>'

编辑:我的错。 <%= %> 转换为 Response.Write,这不是您想要的——我猜,您太习惯 ASP.NET MVC 了。最好的办法是让它 runat="server",给它一个 ID 并在代码隐藏中设置该值。

<ajaxToolkit:TabPanel runat="server" ID="myTabs" ... />


protected void Page_Load( object sender, EventArgs e )
{
    myTabs.Enabled = User.IsInRole("admin");
    ...
}

Is the first example within a binding context (bound control)? Perhaps you want to use the output directive instead of the binding directive?

<ajaxToolkit:TabPanel Enabled='<%= User.IsInRole("admin") %>'

EDIT: My bad. <%= %> translates into Response.Write, which is not what you want -- too used to ASP.NET MVC, I guess. The best thing is to make it runat="server", give it an ID and set the value in your code-behind.

<ajaxToolkit:TabPanel runat="server" ID="myTabs" ... />


protected void Page_Load( object sender, EventArgs e )
{
    myTabs.Enabled = User.IsInRole("admin");
    ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文