Wrox Home  
Search P2P Archive for: Go

  Return to Index  

html_code_clinic thread: Hide the linking pages in the URL


Message #1 by "Graham Abrey" <design@t...> on Mon, 4 Feb 2002 21:53:13
This is a multi-part message in MIME format.

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

to whoever sho has written the below answer, is the same possible in asp 
4

Regards,
Bharat Saboo
  ----- Original Message -----
  From: Draco Associates Ltd.
  To: HTML Code Clinic
  Sent: Tuesday, February 05, 2002 4:41 AM
  Subject: [html_code_clinic] RE: Hide the linking pages in the URL



  Graham, this can be achieved by having a "master" page call links you
  want to hide using the Server.Execute method in .ASP.  The URL of the
  "master" page appears in the address bar of the browser while the
  executed page is displayed.  After the called page is executed, 
control
  returns to the "master" page.

  Server.Execute "pagewithhiddenurl.asp"

  There's also a Server.Transfer method which acts more like a redirect
  but carries with it the context (Request & Response objects & more) of
  the calling page.  I have not used it, but suspect that it does NOT
  solve the problem you posed.

  P.S. this is the html forum. There is another one for .asp.

  -----Original Message-----
  From: Graham Abrey [mailto:design@t...]
  Sent: Monday, February 04, 2002 9:53 PM
  To: HTML Code Clinic
  Subject: [html_code_clinic] Hide the linking pages in the URL

  I have lots of asp pages linking to each other but all the links are
  shown in the URL bar. I want to hide this feature if possible. Does
  anyone know how to do this?

  Graham
  $subst('Email.Unsub').



$subst('Email.Unsub').



  Return to Index