Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asptoday_discuss thread: RE: Directing to page with Target Attribute


Message #1 by "Tulip, Nick S" <nick.s.tulip@c...> on Wed, 3 Apr 2002 15:09:59 -0500
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

------_=_NextPart_001_01C1DB4B.881B86A0
Content-Type: text/plain;
	charset="iso-8859-1"

I don't think that there is any way for you to do this with
response.redirect

-----Original Message-----
From: ASIM ABBASI [mailto:asim_electro@h...]
Sent: Wednesday, April 03, 2002 2:51 PM
To: ASPToday Discuss
Subject: [asptoday_discuss] Directing to page with Target Attibute


Dear Devils,
 
I am developed a ASP based project. It contains system for user
authentication for different privilages. Is there any way I can achieve the
following goal.
 
Response.Redirect("myfile.html target=""_top""")

 

Although this is not true command. But it give u an idea what I want. That
is redirecting to specific page on a particular target.

Regards,

FlipFlop


Message #2 by Senthil Raja V <senthil@s...> on Thu, 04 Apr 2002 13:18:33 +0530
Yes. you can't do this with Response.Redirect
but you can use
<script language="javascript">
         redirect();

         function redirect()
         {
                 document.form.action="filename.asp"
                 document.form.method="post";
                 document.form.target="top";
                 document.form.submit();
         }
</script>

Regards
Senthil.

At 03:09 PM 4/3/02 -0500, you wrote:
>I don't think that there is any way for you to do this with 
>response.redirect
>-----Original Message-----
>From: ASIM ABBASI [mailto:asim_electro@h...]
>Sent: Wednesday, April 03, 2002 2:51 PM
>To: ASPToday Discuss
>Subject: [asptoday_discuss] Directing to page with Target Attibute
>
>Dear Devils,
>
>I am developed a ASP based project. It contains system for user 
>authentication for different privilages. Is there any way I can achieve 
>the following goal.
>
>Response.Redirect("myfile.html target=""_top""")
>
>
>
>Although this is not true command. But it give u an idea what I want. That 
>is redirecting to specific page on a particular target.
>Regards,
>FlipFlop


Message #3 by "Bharat Saboo" <bharatsaboo@h...> on Thu, 4 Apr 2002 13:57:17 +0530
This is a multi-part message in MIME format.

------=_NextPart_000_00E6_01C1DBE0.A18E4F60
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

dear asim

u would have to develop ASP 5.0 yrself to do that

he...he.....he
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
=3D=3D=3D=3D=3D=3D=3D
Bharat Saboo
Senior Web Developer / ASP / VB 6

Radiance Associates
Riddhi Siddhi Trading Company
(Computer Division)
+xx xx xxxxxxx
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
=3D=3D=3D=3D=3D=3D=3D
----- Original Message -----
From: Tulip, Nick S
To: ASPToday Discuss
Sent: Thursday, April 04, 2002 1:39 AM
Subject: [asptoday_discuss] RE: Directing to page with Target Attribute


I don't think that there is any way for you to do this with 
response.redirect
  -----Original Message-----
  From: ASIM ABBASI [mailto:asim_electro@h...]
  Sent: Wednesday, April 03, 2002 2:51 PM
  To: ASPToday Discuss
  Subject: [asptoday_discuss] Directing to page with Target Attibute


  Dear Devils,

  I am developed a ASP based project. It contains system for user 
authentication for different privilages. Is there any way I can achieve 
the following goal.

  Response.Redirect("myfile.html target=3D""_top""")



  Although this is not true command. But it give u an idea what I want. 
That is redirecting to specific page on a particular target.

  Regards,

  FlipFlop



  Return to Index