how tp set port number for web site
-
I have deployed web site on my local machine i want to set port number how to set that
-
I have deployed web site on my local machine i want to set port number how to set that
I believe you configure that in IIS.
Christian Graus Driven to the arms of OSX by Vista. "I am new to programming world. I have been learning c# for about past four weeks. I am quite acquainted with the fundamentals of c#. Now I have to work on a project which converts given flat files to XML using the XML serialization method" - SK64 ( but the forums have stuff like this posted every day )
-
I have deployed web site on my local machine i want to set port number how to set that
nikhil1234 wrote:
I have deployed web site on my local machine i want to set port number how to set that
Open IIS > Right Click on Web Sites in which your Virtual Directory Present > Select Web Site Tab > Change Port No from there.
cheers, Abhijit CodeProject MVP
-
nikhil1234 wrote:
I have deployed web site on my local machine i want to set port number how to set that
Open IIS > Right Click on Web Sites in which your Virtual Directory Present > Select Web Site Tab > Change Port No from there.
cheers, Abhijit CodeProject MVP
Shall i know where the IIS is present int system to set port number?
-
Shall i know where the IIS is present int system to set port number?
Karthick_gc wrote:
Shall i know where the IIS is present int system to set port number?
Step 1 :
Run
> typeinetmgr
if IIS is installed in your system the IIS will open UP otherwise you have to install IIS fromControl Panel
>Add Remove Program
Step 2 : In the Explorer side, you have a web site folder. If you click that folder, "Default Web Site
" Will be there. And its by default runs onPort 80
. And anyVirtual Directory
created under that default site will run on port 80. Suppose You have a a virtual directory called "MySites
", you can access then likehttp://servername/MySites
orhttp://servername:80/MySites
Now : You want to create another web sites Say "My Web Site Two" , you can create, but you have to change the Port Number by Right Clicking on Web Site -> Properties TAB > Web Sites
Hope this gives you clear idea. Let me know if any issue.cheers, Abhijit CodeProject MVP