
March 12th, 2000, 05:23 AM
|
|
Contributing User
|
|
Join Date: Dec 2002
Posts: 14,575
  
Time spent in forums: < 1 sec
Reputation Power: 22
|
|
|
<i><b>Originally posted by : Joe (jrose@jrose.dynip.com)</b></i><br />Alistair:<br /><br />I'm having a similar problem. In my case I wish a page containing a FORM to display in a left hand frame and have this same script display a graphic in a right hand frame. Redirect kills the FORM at the redirect as expected but the graphic shows up. The trick for me is to put the graphic on the right while "holding" the form in the left frame all from the same script (asp page).<br /><br />You may get results with something like this:<br /><br /><%<br />PageImage = trim(rs("ORGPAGE"))<br />goNameImage = "ImagePage.asp?ImagePage=" _<br /> & PageImage & " Target=" & "_blank" <br />response.redirect goNameImage<br />%><br /><br />The problem is, like I am having, you will lose the calling script page as soon as the redirect is reached.<br /><br />Joe <br /><br />------------<br />Alistair at 2/25/2000 11:49:36 AM<br /><br /><br />Is there any way to go from the response.redirect to a new window without having <br />to go through a HREF link? <a href="http://www.aspfree.com/redirectlink.asp?link=<br />http://www.someurl.com target="_blank">click this to be redirected</a><br /><br />The redirect I am trying to modify looks like:<br /><!--- server side ----><br />response.redirect (redirectlink.asp?file_name="+ root_directory+file_name)<br /><br />and I want this to open a new window (or possibly an alert/error box). It redirect <br />to a normal HTML web page at the moment.<br /><br />Thanks
|