简体   繁体   中英

redirect from html to another page in aspx

i include html page in aspx:

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" Runat="Server">
    <iframe src="HTMLPage.htm" frameborder="0" style="width: 184px" ></iframe>
</asp:Content>

in the html page there is a button and when i press it i want to go to another page.

window.location ="../Doh/doh.aspx?";

the problem is that the new page open in the iframe in the aspx page, and i want that it instead of the first aspx page.

can you help me?

thanks

尝试:

parent.window.location.href = "../Doh/doh.aspx?";

尝试访问父窗口并设置网址

window.parent.window.location.href = '../Doh/doh.aspx?'

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM