ASP.NET母版页实现局部刷新的效果,求解答,不胜感激
我的母版页用了三个大div分局,一个头部,一个是左边的导航,另一个是内容,我想在点击导航的连接时,右边的内容页实现局部刷新。如何,给个代码的演示,谢谢<divid="co...
我的母版页用了三个大div分局,一个头部,一个是左边的导航,另一个是内容,我想在点击导航的连接时,右边的内容页实现局部刷新。如何,给个代码的演示,谢谢
<div id="content">
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</ContentTemplate>
</asp:UpdatePanel>
</div>
不知这样对不对,求解 展开
<div id="content">
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</ContentTemplate>
</asp:UpdatePanel>
</div>
不知这样对不对,求解 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏30(财富值+成长值)
1个回答
展开全部
母板的结构
<%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %>
<html >
<head runat="server">
<title></title>
<asp:ContentPlaceHolder id="head" runat="server">
</asp:ContentPlaceHolder>
</head>
<body>
<form id="form1" runat="server">
<div style ="width:1000px">
<div style =" height :100px; width :1000px; background-color :green; float :left">头部分</div>
<div style =" height :400px; width :200px; background-color :red; float :left">
<ul>
<li><a href ="<%'套用此母板的网页,也就是内容页 %>">百度</a></li>
<li><a href ="<%'套用此母板的网页,也就是内容页 %>">淘宝</a></li>
</ul>
</div>
</div>
<div>
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
</form>
</body>
</html>
<%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %>
<html >
<head runat="server">
<title></title>
<asp:ContentPlaceHolder id="head" runat="server">
</asp:ContentPlaceHolder>
</head>
<body>
<form id="form1" runat="server">
<div style ="width:1000px">
<div style =" height :100px; width :1000px; background-color :green; float :left">头部分</div>
<div style =" height :400px; width :200px; background-color :red; float :left">
<ul>
<li><a href ="<%'套用此母板的网页,也就是内容页 %>">百度</a></li>
<li><a href ="<%'套用此母板的网页,也就是内容页 %>">淘宝</a></li>
</ul>
</div>
</div>
<div>
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
</form>
</body>
</html>
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询