Results 1 to 3 of 3

Thread: Sending to a URL

  1. #1

    Thread Starter
    New Member
    Join Date
    Oct 1999
    Posts
    12
    I want to send a person to a specific URL in the same window that is currently open (but if there isn't one open, i will need to open a new browser window)

    If anyone could help me figure this out, that would be great.

    Thanks!

  2. #2
    Junior Member
    Join Date
    Mar 2000
    Location
    Montreal, QC
    Posts
    24
    Hmm, well...

    You can do the following:
    Code:
    Shell ("Explorer http://www.notarealsite.com")
    But this will only open the website in a new window of Internet Explorer (regardless of the default browser).

    Sorry, that's all I got, hope it helps.

    JMik

  3. #3
    New Member
    Join Date
    Jan 2000
    Location
    Netherlands
    Posts
    5

    Post Re: Redirections

    Greetings,

    Using ASP you could say:
    Response.Redirect("somewhere.html")

    Using JavaScript 2 you could say:
    document.href = "somewhere.html"

    Using HTML, you could say:
    <a href="somewhere.html" target="_self">Go!</a>
    Or even
    <Meta Http-Equiv="refresh" Content="1;url=somewhere.html">

    You see, it depends on what environment the user is in.

    Imagine!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width