ASP母版页脚不显示在网页中 [英] ASP Master page footer not display in web page

查看:60
本文介绍了ASP母版页脚不显示在网页中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在创建页眉为n页脚的母版页.我也在使用CSS.但是运行后,页脚未显示在网页中.有什么问题吗?

I am creating a master page with header n footer. I am using css also. But after run the footer is not displaying in the web page. What is the problem ?

<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterAdmin.master.cs" Inherits="Admin_MasterAdmin" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <link href="../App_Theme/Style1.css" rel="stylesheet" type="text/css" />
    <title></title>
    <asp:ContentPlaceHolder id="head" runat="server">
    </asp:ContentPlaceHolder>
    <style type="text/css">
        .style1
        {
            height: 17px;
        }
    </style>
</head>
<body bgcolor="#991109">
    <form id="form1" runat="server">
    <table style="height:auto; width:100%;">
    <tr>
    <td>
    <div id="header1">
        <br />
        <asp:Label ID="Label1" runat="server" Text="utoSS" Font-Size="30pt"

            style="font-family: Algerian"></asp:Label></div>
    </td>
    </tr>
    <tr>
       <td id="menu" style="background-color:Silver;" class="style2">
                          <table><tr>
                             <td style=" width:800px; float:left;">
                                     &nbsp;<a href="Programmer.aspx" title="programer" style="color:Black;">Programmer</a>&nbsp;||&nbsp; <a href="Teamlead.aspx"style=" color:Black;" title="TL">Team Lead</a>&nbsp;||&nbsp; <a href="Projectlead.aspx"style=" color:Black;" title="PL">Project Lead</a>
                              </td>
                              <td style="width:400px;" align="right">

                                  <a href="AdminLogin.aspx"style=" color:Black; float:right;" title="signout">Log Out&nbsp;</a></td>
                          </tr></table>
       </td>
    </tr>
    <tr><td id="welcome" style="height:25px; width:100%; background-color:Silver;">
            <table><tr>
             <td style=" width:800px; float:left;">Welcome&nbsp; <%Label2.Text = Session["nm"].ToString(); %>
                 <asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
                </td>
                <td style="width:400px;" align="right">

                    <asp:Label ID="Label3" runat="server" Text="Label"></asp:Label>&nbsp;&nbsp;<%Label3.Text = DateTime.Now.ToString(); %></td>
            </tr></table>
        </td></tr>
    </table>
    <table width="100%">
    <tr>
    <td id="sideleftbar">
        <table style="width: 79%; background-color:Silver; border-radius:15px;">
            <tr><td align="center" style="border-top-left-radius:15px;border-top-right-radius:15px; background-color:Fuchsia;"><h3>Quick Link</h3>
            <img alt="" class="style1" src="../Images/crest-line.gif" />
            </td></tr>
            <tr><td></td></tr>
            <tr><td align="center"><a href="Createuser.aspx">Create User</a></td></tr>
            <tr><td align="center"><a href="viewprofile.aspx">View Profile</a></td></tr>
            <tr><td align="center"><a href="changepassword.aspx">Change Password</a></td></tr>
            <tr><td align="center"><a href="AdminLogin.aspx">Log Out</a></td></tr>
            </table>
    </td>
    <td id="siderightbar">
        <asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">

        </asp:ContentPlaceHolder>
    </td>
    </tr>
    </table>
    <table id="footer">
    <tr><td>
        <asp:Label ID="Label4" runat="server" Text="2012 Universal Technology Solutions. All rights reserved."></asp:Label></td></tr>
    </table>
    </form>
</body>
</html>









#adm
{
    margin:150px 0px 0px 500px;
    border-style: none;
    border-color: inherit;
    border-width: 5px;
    background: #999999;
    color:Aqua;
    height:150px;
    width:261px;
    border-radius:20px;
    text-shadow:2px 2px 2px #000;
    -moz-box-shadow: 0 0 5px 5px #888;
    -webkit-box-shadow: 0 0 5px 5px#888;
    box-shadow: 0 0 5px 5px #888;
}
#header1
{
    height:100px;
    width:100%;
    background-color:Green;
    text-align:center;
    text-transform:uppercase;
    text-shadow:3px 3px 3px #000;
 }
#content-wrapper {
    width: 100%;
    height: auto;
    margin: 5px auto;
    padding: 0px;
    background:#FFFFFF;
}
#sideleftbar {
    float: left;
    width: 15%;
    padding: 0px 0px 0px 0px;
    height:auto;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}
#siderightbar
{
    float:right;
    width: 85%;
    margin: 0;
    padding: 0px 0px 0px 0px;
    height:auto;
 }
 #footer
{
    height:50px;
    width:100%;
    background-color:Green;
    text-align:center;
    text-shadow:3px 3px 3px #000;
 }

推荐答案

<div class="footer"> Try this as your Footer. Align the text as you need.</div>



CSS///
<pre lang="css">.footer {
    background-color:#336755;
    height:50px;
    position:fixed;
    bottom:0px;
    left:0px;
    width:100%;
}</pre>


这篇关于ASP母版页脚不显示在网页中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆