Click here to Skip to main content
15,923,120 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hiiiiii

can u help me pls
how to redirect html page from aspx page
pls help me
Posted

if u find answer plz send me i think it is possible by using javascript code plz refer javascript.
 
Share this answer
 
Comments
Mamtha7 31-Mar-12 5:40am    
thank u if u get it ,send it to me
In C#
Response.Redirect("your_html_page.html");

In asp.net
<asp:hyperlink id="hyperlink1" navigateurl="your_html_page.html">
Text="click here" runat="server" />
</asp:hyperlink>

In html
<a href="your_html_page.html">click here</a>

In javascript
window.location="your_html_page.html";
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900