我必须从.asp
页面导航到.aspx
页面
我们使用iframe概念,以便页面适合浏览器窗口
我的问题是,当我们从.asp
导航到.aspx
页面时,内容会被推下一点,我们在顶部使用概念<body MS_POSITIONING="flowlayout">
,我们使用表单概念来填充在内容中。
有人可以帮我解决如何将内容推送到页面顶部的问题吗?
答案 0 :(得分:1)
我自己解决了这个问题。我只是在表格标签中添加了POSITION:absolute; TOP:0px;
例如:
<body MS_POSITIONING="flowlayout">
<form id="example" method="post" runat="server">
<table cellSpacing="0" style="MARGIN-TOP:0px; POSITION:absolute; TOP:0px;"cellPadding="0" width="100%" align="center" border="0">
//content
</table>
</form>
</body>
网站看起来很好。