如何在aspx页面中使用MS_POSITIONING =“flowlayout”?

时间:2011-07-18 07:00:05

标签: asp.net

我必须从.asp页面导航到.aspx页面 我们使用iframe概念,以便页面适合浏览器窗口 我的问题是,当我们从.asp导航到.aspx页面时,内容会被推下一点,我们在顶部使用概念<body MS_POSITIONING="flowlayout">,我们使用表单概念来填充在内容中。

有人可以帮我解决如何将内容推送到页面顶部的问题吗?

1 个答案:

答案 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>

网站看起来很好。