vote up 0 vote down star

How can I change the port number used by WebBrowser control? The standard port number is 80, but I would like to use a different port.

flag

69% accept rate
Can you provide more information? It's not clear exactly what you're trying to do and how it relates to .NET. – Troy Hunt Jul 11 at 23:53
I'm trying to change the port number because port 81 is blocked by another program. – mykhaylo Jul 12 at 0:18
Are you trying to reach a URL with :81 in it? If that port is blocked, then it's blocked. – John Saunders Jul 12 at 0:25

5 Answers

vote up 8 vote down

You should specify an alternate port number in the URL itself:

http://server:port/path?query
link|flag
vote up 4 vote down

The web browser control is a client. To connect to the server on different port, you change the URL.

ex: http://www.mysite.com:81/

would attempt to connect to the site on port 81.

link|flag
vote up 1 vote down

Are you asking about the System.Windows.Forms.WebBrowser class?

If so, then set the Url property using the format Mehrdad mentioned, or go there using the Navigate() method:

http://server:port/path?query

Example:

WebBrowser w = new WebBrowser();
w.Navigate(new Uri("http://server:port/path?query"));
link|flag
"Are you asking about the System.Windows.Forms.WebBrowser class?" - Yes – mykhaylo Jul 12 at 0:20
vote up 0 vote down

If you're trying to change the local port of the web browser, I'm not sure that you can. The Windows API automatically assigns a local port to the browser.

link|flag
vote up 0 vote down

You can use the DOS command "netstat -anb" to find out what process is holding port 81 on your machine.

link|flag

Your Answer

Get an OpenID
or

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