vote up 1 vote down star
1

How can I get the url from a running instance of firefox using .NET 2.0 windows/console app? C# or VB codes will do.

Thanks!

flag

20% accept rate
You need to be a bit clearer. Do you mean how to obtain the url from a running instance of firefox in a windows/console app? – Kev Jan 10 '09 at 6:18
yes... i've edited the question. Thanks! – Leon Tayson Jan 10 '09 at 6:24
If this can be done, you realise there could be multiple instances each with multiple tabs. What are you trying to achieve? – Kev Jan 10 '09 at 6:26
yes, i do realize that. i have this working with IE, in fact, i have this working with firefox but it's using a .NET 3.5 class but the client wants to have it done in .NET 2.0 – Leon Tayson Jan 10 '09 at 9:00

4 Answers

vote up 0 vote down

You may want to check into the source code of WatiN. Their next version is open source and supports firefox, so I would imagine the functionality for doing this is in it.

link|flag
I've edited the question to add more details. I'm doing a winforms application and i need to get the browser URL. I already have the codes for the IE Url. Thanks! – Leon Tayson Jan 10 '09 at 6:17
vote up 2 vote down

it seems that this might be difficult, here's some discussion on it: http://social.msdn.microsoft.com/Forums/en/csharpgeneral/thread/c60b1699-9fd7-408d-a395-110c1cd4f297/

link|flag
vote up 2 vote down

For most browsers, including Internet Explorer, Navigator, Firefox, and Opera, the supported and sanctioned way of doing this is to use DDE. The topic name in all of them is WWW_GetWindowInfo; only the name of the target window varies. That technique will be difficult for you, though, because .Net doesn't support DDE. If you can find a way to get around that limitation, you'll be all set.

link|flag
vote up 1 vote down

Poor man's solution, if anything else fails: activate the Firefox window, send Ctrl+L (activates address bar), send Ctrl+C (copy selection, ie. URL, to clipboard) and read the clipboard.

Lot of issues with this method (among them it does strange stuff for the user if they are in front of the computer) so it is only a backup solution...

link|flag
hiii Can you tell me how to send keys using c#.net??? – ankush Jul 20 at 6:53
No. Because I don't know C#. I would do that with AutoHotkey... :-P – PhiLho Jul 20 at 18:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.