|
-
Apr 6th, 2000, 03:03 AM
#1
Thread Starter
New Member
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!
-
Apr 23rd, 2000, 11:14 AM
#2
Junior Member
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
-
May 1st, 2000, 04:57 PM
#3
New Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|