设置字段集的“图例”到看不见的

发布于 2024-12-12 19:10:28 字数 112 浏览 3 评论 0原文

我可以在 C# 中使用另一个选项吗?为了显示这些图例之一,我需要满足一个条件。截至目前,我不知道如何将这个图例设置为从 .cs 端不可见......除非还有一些 .asp 等效项??? 有什么建议吗? 谢谢你!

Is there another option for the that I can use in C#? I have a condition that needs to be met in order to display one of these Legends. As of now, I don't see how I can set this legend to invisible from the .cs side...unless there is also some .asp equivalent???
Any suggestions?
Thank you!

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

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

发布评论

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

评论(1

豆芽 2024-12-19 19:10:29

您可以在其上使用 runat="server" 属性并为其提供一个 id:,

<fieldset>
    <legend runat="server" id="leg">Some Legend</legend>
    Some value
</fieldset>

然后在后面的代码中使用该 id 来隐藏它:

protected void Page_Load(object sender, EventArgs e)
{
    leg.Visible = false;
}

You could use the runat="server" attribute on it and provide it an id:

<fieldset>
    <legend runat="server" id="leg">Some Legend</legend>
    Some value
</fieldset>

and then in the code behind use the id to hide it:

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