Asp.Net MasterPage - 更改 WebContentForm 正文元素 - CssClass

发布于 2024-09-03 12:31:21 字数 215 浏览 7 评论 0原文

更改使用 MasterPage 的 WebContentForm 的 css 类名的最简单方法是什么?

示例:

  • MasterPage : ...
  • Index.aspx :我希望呈现的页面看起来像 。 ..
  • Other.aspx : ...

What it's the easiest way to change the css class name of a WebContentForm that use a MasterPage ?

Example:

  • MasterPage : <body>...</body>
  • Index.aspx : I will like the rendered page to look like <body class="myClass">...</body>
  • Other.aspx : <body>...</body>

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

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

发布评论

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

评论(1

森林迷了鹿 2024-09-10 12:31:21

我使用此解决方法:

在 MasterPage 上:

在 Index.cs 上: ((HtmlGenericControl)Page.Master.FindControl("body ")).Attributes["class"] = "myClass";

这并不是很优雅,但它可以工作

I use this workaround :

On MasterPage : <body id="body" runat="server">

On Index.cs : ((HtmlGenericControl)Page.Master.FindControl("body")).Attributes["class"] = "myClass";

It's not really elegant, but it's work

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