关于asp.net页面的问题
发布网友
发布时间:2022-04-27 16:13
我来回答
共4个回答
热心网友
时间:2022-04-27 17:42
把A页面设计好,然后把设计代码复制。
在VS里新建一个用户控件页面,就是后缀为.ascx,然后把设计代码粘贴进去,注意:ascx页面最顶端的那句代码千万不要覆盖掉。
然后生成解决方案或者项目。
设计B,C页面,直接可以在“解决方案资源管理器”里面把A.ascx页面拖放到B,C页面中。
热心网友
时间:2022-04-27 19:00
直接用 ifream, 要不就在建一个D页面 在里面加上
</head>
<frameset rows="90,*,35" frameborder="no" border="0" framespacing="0">
<frame src="A.aspx" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" />
<frame src="B.aspx" name="mainFrame" scrolling="no" id="mainFrame" "/>
<frame src="C.aspx" name="bottomFrame" scrolling="No" noresize="noresize" id="bottomFrame" />
</frameset>
<noframes>
<body>
</body>
</html>
热心网友
时间:2022-04-27 20:35
最快速的方法是母版页,其次用层架构(框架)做。你可以在很多开源的DEMO网站上找到你想要的。百度、google大神一切都是可能的。
热心网友
时间:2022-04-27 22:26
建个用户控件,建好顶部,直接拖到其它页面上