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.
|
|
|||||||
|
|
|
You should specify an alternate port number in the URL itself:
|
||
|
|
|
|
The web browser control is a client. To connect to the server on different port, you change the URL.
would attempt to connect to the site on port 81. |
||
|
|
|
|
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:
Example:
|
|||
|
|
|
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. |
||
|
|
|
|
You can use the DOS command "netstat -anb" to find out what process is holding port 81 on your machine. |
||
|
|
