How to config visual studio .net to read IIS port 8000 as default?

  • Thread starter Thread starter Rudy Ko
  • Start date Start date
R

Rudy Ko

Dear All,

I have Apache using port 80. So I changed IIS to use port 8000 as
default web service. After that all my .net projects were not able to load
into Visual Studio .net. Do you know how to configure Visual Studio .net to
load web projects from port 8000? Thanks for the help!!!

Thanks,
Rudy
 
Hi Rudy!



In Project Folder there are one file <ProjectName>.vbproj.webinfo specify
path of your web application like

<VisualStudioUNCWeb>

<Web URLPath = "http://localhost/CGMIITS/CGMIITS.vbproj" />

</VisualStudioUNCWeb>

change to

<VisualStudioUNCWeb>

<Web URLPath = "http://localhost:8000/CGMIITS/CGMIITS.vbproj" />

</VisualStudioUNCWeb>

that work fine


--
Harshad Prajapati
Software Engineer
VMF Soft Tech Ltd. , Ahmedabad.
Phone No. - (079) 26581240, 26582823
Mobile No. - 91 94265 18087
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top