码迷,mamicode.com
首页 > Web开发 > 详细

asp.net 母版页使用方法

时间:2015-01-20 20:24:52      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

母版页代码:

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

<!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 runat="server">
    <title>无标题页</title>
       <script type="text/javascript" src="js/JScript.js"></script>
    <script type="text/javascript" language="javascript">
     $(document).ready(function(){
     
     $("#a1").click(function()
     {
        alert("父页面");
     });
     
     });
    
    </script>
    <asp:ContentPlaceHolder id="head" runat="server">
 
    </asp:ContentPlaceHolder>
</head>
<body style="background-color:Gray;">

    <div  style="width:1050px;  background-color:Yellow; margin:0 auto;">
    <div style="background-color:Red; margin:0 auto; position:relative; margin-top:10px;  height:200px;">
       <p>页面顶部</p><a id="a1" href="#">登录</a>
       </div>
        <asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
        
    
        </asp:ContentPlaceHolder>


    <div style="background-color:Blue;margin:0 auto; position:relative; margin-top:10px;  height:200px; "><p>页面底部</p></div>
</div>
</body>
</html>

子页面代码:

<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true"
    CodeFile="Default.aspx.cs" Inherits="_Default" Title="无标题页" %>

<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">

    <script type="text/javascript">
    $(document).ready(function(){
    $("#a2").click(function(){alert("子页面");});
    
    
    });
    </script>

</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">

<div style=" position:relative; margin-top:10px; height:300px;  background-color:White;"><a id="a2" href="#">子页面</a></div>
</asp:Content>

技术分享

技术分享

asp.net 母版页使用方法

标签:

原文地址:http://www.cnblogs.com/engine/p/4237095.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!