Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can I open a page in a target frame?

Status
Not open for further replies.

lehuong

Programmer
Sep 2, 2003
98
US
Hi all,
I have this code:

Response.Redirect("Login/defaultuser.htm")

But I want this page to be redirect to to the main frame instead of redirect to itself. Hope that someone can help me out of this problem.

lehoung
 
I have never been able to do this with the Response.Redirect, but there's another way you can do this:
Code:
<a href="Login/defaultuser.htm" target="mainFrame">Default User Page</a>
on the page containing the frame.

or...

if you want to dynamically do this from the server, you could use an asp:hyperlink control on your web form:

Code:
<asp:HyperLink Target="MyHyperlink" ID Runat="server">
then in the code behind page you add a target:

Code:
Me.MyHyperlink.Attributes.Add("Target", "mainFrame")
Me.MyHyperlink.Attributes.Add("NavigateUrl", "Login/defaultuser.htm")

When your user clicks on the hyperlink it should load your defaultuser.htm into the mainFrame like you want.

Hope this helps!
Have a nice day.
 
Instead of using Response.Redirect use Page.RegisterStartupScript to include somejavascript in your page to do the redirect on the contebt frame something like this (assumes you are using HTML Frames whcih is another matter altogether and not for discussing inthis forum...)
Code:
string script = "<script type=\"text/javascript\">document.frames[1].document.location.href=\"Login/defaultuser.htm\";</script>"
Page.RegisterStartupScript("Redirect", script);

Rob

Go placidly amidst the noise and haste, and remember what peace there may be in silence - Erhmann 1927
 
Thank you guys, It is really working.... great
lehuong
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top