|
-
Mar 16th, 2001, 10:06 AM
#1
Thread Starter
Hyperactive Member
Hi, Can any1 tell me how I can use VB Script to place text into the web broweser address bar.
I mean eg:
I have a program that monitors the address bar of the browser, waiting on a command.
Well, when a user clicks on a link, the browser DOESN'T put the URL into the address bar. I need to know how to do this.
Please help me!
-
Mar 21st, 2001, 09:04 AM
#2
Originally posted by AliBail
Well, when a user clicks on a link, the browser DOESN'T put the URL into the address bar. I need to know how to do this.
What you can do is:
Code:
<a href="http://www.vbdungeon.net/default.asp?code=start&action=begin">Click Here</a>
Example: Click Here
You can see that the request code and action is in the address bar.
-
Mar 21st, 2001, 01:18 PM
#3
Thread Starter
Hyperactive Member
I never thought of that
It never occured to me to open a new window.
But if possible how can I do it without opening a new window, because it doesn't work in my program.
-
Mar 22nd, 2001, 04:09 AM
#4
This will open the link in the same window:
Code:
<a href="http://www.vbdungeon.net/default.asp?code=start&action=begin">Click Here</a>
And this will open the link in a new window:
Code:
<a href="http://www.vbdungeon.net/default.asp?code=start&action=begin" target=_blank>Click Here</a>
-
Mar 22nd, 2001, 01:39 PM
#5
Thread Starter
Hyperactive Member
Still nope, I'll tery explaining what I want to do
I know how to navigate to other pages, and yes itdoes place it in the address bar.
But thats not what I want to do, I probably wasn't very clear about this but here's what I want to do:
I have a program, that has a built in web browser! It monitors the browsers address bar for a command similar to the following:
loadchat#myroom#mehide
As Im sure you'll find, if you place that in a link, You get a netword error. but it still doesn't place it in the address bar.
If you know how I can do this please help me.
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
|