asp.net,面板宽度

发布于 2024-07-14 06:44:04 字数 110 浏览 2 评论 0原文

我正在使用 .net 2005。因为我有母版页和内容页,所以我在内容中使用面板。

有人知道如何在运行时根据屏幕尺寸设置面板宽度吗?

谢谢

I am using .net 2005. In that i have master page and content page, i am using panel inside content.

Is any body know how to set panel width as per screen size at run time ??

Thanks

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

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

发布评论

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

评论(2

南薇 2024-07-21 06:44:04

在面板上设置 css 类属性

<asp:Panel CssClass="fullWidth" ID="MyPanel" runat="server">
</asp:Panel>

然后从母版页链接到外部 css 样式表,并在其中设置以下

.fullWidth
{
    width: 100%;
}

注意:这将任何具有 fullWidth 类的元素的宽度设置为其父级宽度的 100%,并且也可用于其他元素

Set a css class attribute on your panel

<asp:Panel CssClass="fullWidth" ID="MyPanel" runat="server">
</asp:Panel>

Then link to an external css stylesheet from your master page an in that set the following

.fullWidth
{
    width: 100%;
}

NOTE: This sets the width of any element with class fullWidth to 100% of the width of it's parent and can be used for other elements also

情话已封尘 2024-07-21 06:44:04

在 body 标记上的 onload 事件上添加 JavaScript 函数以调整面板宽度。

请注意,此代码是在未经语法验证的情况下键入的。

<script language="javascript" type="text/javascript">
    function Resize(item, width)
    {
        document.getElementById(item).width = width;
    }
</script>

<body onload="Resize(<%= Mypanel.ClientID %>, screen.width)">

Add a javascript function on onload event on the body tag to resize your panel width.

Note, this code has been typed without syntax verification.

<script language="javascript" type="text/javascript">
    function Resize(item, width)
    {
        document.getElementById(item).width = width;
    }
</script>

<body onload="Resize(<%= Mypanel.ClientID %>, screen.width)">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文