473,385 Members | 1,798 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

IIS 5.0 Creating a new WEBSITE with VS.NET

I am currently using the Default Website but want to add the following:

1. A local development WEBSITE (port 81)
2. A new WEBSITE (points to another host header www.newebsite.com)

VS.NET works fine with the Default Website alone BUT the problem is when I
add these new websites and try to create ANY new project in VS.NET, I get an
"ASP.NET Version 1.1 not running" error etc...

How can I get this setup to work and be able to create projects on ANY
website?

Thx a lot
Nov 19 '05 #1
6 1509
Hi Ivan,

You should use IIS Manager to add the new Web site and configure the host
header. Once you have that done, you should be able to create the project
for it as outlined here in Step 4:

http://msdn.microsoft.com/library/en...asp?frame=true
"ivanL" <iv***@discussions.microsoft.com> wrote in message
news:5C**********************************@microsof t.com...
I am currently using the Default Website but want to add the following:

1. A local development WEBSITE (port 81)
2. A new WEBSITE (points to another host header www.newebsite.com)

VS.NET works fine with the Default Website alone BUT the problem is when I
add these new websites and try to create ANY new project in VS.NET, I get
an
"ASP.NET Version 1.1 not running" error etc...

How can I get this setup to work and be able to create projects on ANY
website?

Thx a lot


Nov 19 '05 #2
Hi Ken,

I have created a web site in my IIS 5.0. The site is not created under
'Default Web Site', but as a individual site under IIS server. I changed the
default port from 80 to 81. Now I need to browse this site from remote
machine, but I am not able to do so. Can you guide me how can I achieve this.

Thanke you.
Shailesh

"Ken Cox [Microsoft MVP]" wrote:
Hi Ivan,

You should use IIS Manager to add the new Web site and configure the host
header. Once you have that done, you should be able to create the project
for it as outlined here in Step 4:

http://msdn.microsoft.com/library/en...asp?frame=true
"ivanL" <iv***@discussions.microsoft.com> wrote in message
news:5C**********************************@microsof t.com...
I am currently using the Default Website but want to add the following:

1. A local development WEBSITE (port 81)
2. A new WEBSITE (points to another host header www.newebsite.com)

VS.NET works fine with the Default Website alone BUT the problem is when I
add these new websites and try to create ANY new project in VS.NET, I get
an
"ASP.NET Version 1.1 not running" error etc...

How can I get this setup to work and be able to create projects on ANY
website?

Thx a lot


Nov 19 '05 #3
If you created the application on port 81, use :

http://yourserver.com:81/

or via IP :
http://111.111.111.111:81/

to access yopur application.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================

"Shailesh" <Sh******@discussions.microsoft.com> wrote in message
news:F0**********************************@microsof t.com...
Hi Ken,

I have created a web site in my IIS 5.0. The site is not created under
'Default Web Site', but as a individual site under IIS server. I changed
the
default port from 80 to 81. Now I need to browse this site from remote
machine, but I am not able to do so. Can you guide me how can I achieve
this.

Thanke you.
Shailesh

"Ken Cox [Microsoft MVP]" wrote:
Hi Ivan,

You should use IIS Manager to add the new Web site and configure the host
header. Once you have that done, you should be able to create the project
for it as outlined here in Step 4:

http://msdn.microsoft.com/library/en...asp?frame=true
"ivanL" <iv***@discussions.microsoft.com> wrote in message
news:5C**********************************@microsof t.com...
>I am currently using the Default Website but want to add the following:
>
> 1. A local development WEBSITE (port 81)
> 2. A new WEBSITE (points to another host header www.newebsite.com)
>
> VS.NET works fine with the Default Website alone BUT the problem is
> when I
> add these new websites and try to create ANY new project in VS.NET, I
> get
> an
> "ASP.NET Version 1.1 not running" error etc...
>
> How can I get this setup to work and be able to create projects on ANY
> website?
>
> Thx a lot


Nov 19 '05 #4
Juan,

I am trying to access the site by the way. But when I try to access the site
from remote machine I am not able to browse it. How can I access the site
from remote machine.

"Juan T. Llibre" wrote:
If you created the application on port 81, use :

http://yourserver.com:81/

or via IP :
http://111.111.111.111:81/

to access yopur application.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================

"Shailesh" <Sh******@discussions.microsoft.com> wrote in message
news:F0**********************************@microsof t.com...
Hi Ken,

I have created a web site in my IIS 5.0. The site is not created under
'Default Web Site', but as a individual site under IIS server. I changed
the
default port from 80 to 81. Now I need to browse this site from remote
machine, but I am not able to do so. Can you guide me how can I achieve
this.

Thanke you.
Shailesh

"Ken Cox [Microsoft MVP]" wrote:
Hi Ivan,

You should use IIS Manager to add the new Web site and configure the host
header. Once you have that done, you should be able to create the project
for it as outlined here in Step 4:

http://msdn.microsoft.com/library/en...asp?frame=true
"ivanL" <iv***@discussions.microsoft.com> wrote in message
news:5C**********************************@microsof t.com...
>I am currently using the Default Website but want to add the following:
>
> 1. A local development WEBSITE (port 81)
> 2. A new WEBSITE (points to another host header www.newebsite.com)
>
> VS.NET works fine with the Default Website alone BUT the problem is
> when I
> add these new websites and try to create ANY new project in VS.NET, I
> get
> an
> "ASP.NET Version 1.1 not running" error etc...
>
> How can I get this setup to work and be able to create projects on ANY
> website?
>
> Thx a lot


Nov 19 '05 #5
Like I said, if you create an application on port 81,
you must browse to it including the port on the URL.

http://www.yourserver.com:81/
( If you have a DNS name... )

or via IP :
http://111.111.111.111:81/
( If you don't have a DNS name.
Replace the 111.111.111.111 with the real IP address )

Does the machine where you created the application
have a fixed IP assigned to it ?

Or, does it have a variable IP ?

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================

"Shailesh" <Sh******@discussions.microsoft.com> wrote in message
news:07**********************************@microsof t.com...
Juan,

I am trying to access the site by the way. But when I try to access the
site
from remote machine I am not able to browse it. How can I access the site
from remote machine.

"Juan T. Llibre" wrote:
If you created the application on port 81, use :

http://yourserver.com:81/

or via IP :
http://111.111.111.111:81/

to access yopur application.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================

"Shailesh" <Sh******@discussions.microsoft.com> wrote in message
news:F0**********************************@microsof t.com...
> Hi Ken,
>
> I have created a web site in my IIS 5.0. The site is not created under
> 'Default Web Site', but as a individual site under IIS server. I
> changed
> the
> default port from 80 to 81. Now I need to browse this site from remote
> machine, but I am not able to do so. Can you guide me how can I achieve
> this.
>
> Thanke you.
> Shailesh


Nov 19 '05 #6
Juan,

let me make thing clear.
I crated web site in my IIS, I have not created site under the 'Default Web
Site', but created the individual under server name. Lets assume site name as
'Myweb'.
As u know default port for all the sites under 'Default Web Site' is 80, and
I can't run more than one site on same port. So I changed the port for
'Myweb' to 81. Generally now I can browse the stie like
'http://localhost:81/default.aspx' from the machine where I hosted the site
or by giving the IP address instead of localhost from diff. machine in my
network. I dont need to browse the site outside my network.
But this way I am not able to browse the site from local as well as network
machine. Can u guide me what to do in this case.

Thank you.
Shailesh

"Juan T. Llibre" wrote:
Like I said, if you create an application on port 81,
you must browse to it including the port on the URL.

http://www.yourserver.com:81/
( If you have a DNS name... )

or via IP :
http://111.111.111.111:81/
( If you don't have a DNS name.
Replace the 111.111.111.111 with the real IP address )

Does the machine where you created the application
have a fixed IP assigned to it ?

Or, does it have a variable IP ?

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================

"Shailesh" <Sh******@discussions.microsoft.com> wrote in message
news:07**********************************@microsof t.com...
Juan,

I am trying to access the site by the way. But when I try to access the
site
from remote machine I am not able to browse it. How can I access the site
from remote machine.

"Juan T. Llibre" wrote:
If you created the application on port 81, use :

http://yourserver.com:81/

or via IP :
http://111.111.111.111:81/

to access yopur application.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================

"Shailesh" <Sh******@discussions.microsoft.com> wrote in message
news:F0**********************************@microsof t.com...
> Hi Ken,
>
> I have created a web site in my IIS 5.0. The site is not created under
> 'Default Web Site', but as a individual site under IIS server. I
> changed
> the
> default port from 80 to 81. Now I need to browse this site from remote
> machine, but I am not able to do so. Can you guide me how can I achieve
> this.
>
> Thanke you.
> Shailesh


Nov 19 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Anders Aleborg | last post by:
I have a website where my projects DLL has maximum trust and the website runs under an admin account! I get this error: Error: You have to be a machine admin to perform this operation. I've...
0
by: lewi | last post by:
I am try to get in ASP.NET developement and I got IIS 5.0 and VS.NET 2002 on Windows 2000 Server... I created a new website(index.asp - just text without HTML/ASP tags - works in IE) in IIS and...
0
by: MarkusPoehler | last post by:
I have several classic ASP projects running on Webserver. I would like to implement some .net functionalities. Because I need the references I have to "upgrade" the existing ones wit a new .net...
9
by: Opa | last post by:
When creating a new web service, I get the following error: Visual Studio .net cannot create or open the application. Web site 'http://localhost/WDWS' not started. The World Wide Web Publish...
8
by: William LaMartin | last post by:
I just received my Visual Studio upgrade to 2005 and tried to create a new web site via File | New Web Site with location http. Unfortunately I received the following error: "Visual Web...
0
by: Jeff | last post by:
ASP.NET 2.0 I created 3 users in my website. After creating these 3 users I wanted to make the password less restrict so I added the settings below to my web.config. (that means the 3 users...
0
by: barani | last post by:
Hi Everyone, Can anyone let me know a website where we can find complete information for creating a website using .net?
2
by: =?Utf-8?B?QWxhc3RhaXIgQmVsbA==?= | last post by:
I am having trouble creating a web site on a server running sharepoint services. I am creating an ASP.Net website using Visual Studio 2005. The server I am trying to create it on is a Windows 2003...
15
by: Mike Driscoll | last post by:
Hi, I've had this niggling issue from time to time. I want to create a shortcut on the user's desktop to a website that specifically loads Firefox even if Firefox is not the default browser. ...
4
by: Mandar | last post by:
Hi, I have written some code in C# to programmatically create a website and an application pool. Both seems to be getting created alright with whatever settings I have applied. However, when I...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.