Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 asp.net 处理程序设置 html 正文的背景图像,我有处理程序,但我不知道该怎么做,任何帮助都会得到帮助。
假设您指的是事件处理程序,例如页面加载事件处理程序,您可以执行以下操作。
将您的身体标签更改为如下所示:
<body runat="server" id="BodyTag">
在您的代码隐藏中,执行以下操作(C#):
BodyTag.Style["background-image"] = "MyImage.png";
或 (VB.NET)
BodyTag.Style("background-image") = "MyImage.png"