a web form problem! (urgent)

  • Thread starter Thread starter crawlerxp
  • Start date Start date
C

crawlerxp

Does anyone know what is the problem here:

I have installed IIS and asp.net 1.1 on windows XP SP1.
asp.net 1.1 is a production not development version I downloaded from ms
site.

Welll this is the problem: I have copied files from my localhost to the
server and tried to access the form.

Well, when I open the form, it shows only 2 labels without 2 buttons and 2
textboxes that are on the form.

On my localhost computer, all works just perfectly! That means on the form I
see 2 labels, 2 buttons and 2 textbox server controls.



form & server: http://217.144.145.40/gserv0001/WebForm1.aspx


Any idea?

Thanks!
 
crawlerxp said:
Does anyone know what is the problem here:

I have installed IIS and asp.net 1.1 on windows XP SP1.
asp.net 1.1 is a production not development version I downloaded from ms
site.

Welll this is the problem: I have copied files from my localhost to the
server and tried to access the form.

Well, when I open the form, it shows only 2 labels without 2 buttons and 2
textboxes that are on the form.

On my localhost computer, all works just perfectly! That means on the form I
see 2 labels, 2 buttons and 2 textbox server controls.



form & server: http://217.144.145.40/gserv0001/WebForm1.aspx

If you use View Source to look at your page, you'll see that ASP.NET has not
processed any of the controls. This suggests that ASP.NET is not installed
properly. Try running "aspnet_regiis -i" and see if that solves the problem.
 
Back
Top