使用母版页时在网页上设置背景图片

Cru*_*lIO 2 html c# asp.net master-pages

当网页基于母版页时,是否可以在网页上设置背景图像。请注意,它不是我要更改的母版页的背景,而是使用母版页的页面的背景。

gol*_*tio 5

您可以只为body {}或任何实际的ASPX页面上的样式添加样式规则。它将覆盖在母版页上设置的任何样式。

编辑:例如:

<%@ Page Title="Example" Language="C#" MasterPageFile="~/MasterPages/Main.master" 
    AutoEventWireup="true" CodeBehind="TroubleShootScanning.aspx.cs" 
    Inherits="SpectrumTechnologies.TroubleShootingScanning" %>

<asp:Content ID="Content1" ContentPlaceHolderID="mainContent" runat="server">
    <style type='text/css'>
        body { background-image: url(images/bgimage.jpg); }
    </style>
    <!-- the rest of the page here -->
</asp:Content>
Run Code Online (Sandbox Code Playgroud)

这将覆盖样式表中设置的所有值。