Problem when moving my Web Application

  • Thread starter Thread starter +The_Taco+
  • Start date Start date
T

+The_Taco+

I have just finished an ASP.NET application and it works all OK on my
localhost.

Now, I need to move the application on another server, wich VS.NET is not
installed.

So I did install .NET framework v1.1, IIS and Microsoft SQL Server.

When I try to access my application, even if it's on the server or another
computer, I can see all my web pages
BUT everything that starts with "asp" in an HTML tag (i.e. <asp:label>)
won't show up.

I thought it was the framework so I re-installed it but then again, my
application doesn't work at all.

Any of you got an issue for this???

Thx a lot...
 
Hello,

The first thing to check - are you sure you have created an application for
your site? VS.NET does this automatically for you on your development
machine. In IIS, open up the properties for your web site, and on the Home
Directory tab, at the bottom, ensure you have an application. If the text
box is grayed out and you have a Create button, click that, and everything
should work smoothly. I am not sure if this is the problem, as you can see
all the pages...

If that doesn't work....depending on what version of IIS you are using, you
might need to ensure that ASP.NET and ASP are enabled. For example, on
Windows Server 2003 you can do the following:

1) Open up IIS Manager
2) Select "Web Service Extensions" for your server name.
3) In the list, ensure that Active Service Pages and ASP.NET are both set to
allowed, and not prohibited.

Good luck!

Mack D. Male
MVP Visual Developer - Academic
http://www.mastermaq.net


I have just finished an ASP.NET application and it works all OK on my
localhost.

Now, I need to move the application on another server, wich VS.NET is not
installed.

So I did install .NET framework v1.1, IIS and Microsoft SQL Server.

When I try to access my application, even if it's on the server or another
computer, I can see all my web pages
BUT everything that starts with "asp" in an HTML tag (i.e. <asp:label>)
won't show up.

I thought it was the framework so I re-installed it but then again, my
application doesn't work at all.

Any of you got an issue for this???

Thx a lot...
 
Back
Top