Deploying Issue on Web Server

session101

Newcomer
Joined
May 10, 2006
Messages
23
I have a ASP.NET web application written in C#. THe events (buttons, dropdown) worked when I had my machine as the webhost; however, when I deployed the web app to the web server, none of the events are working. My dropdown list is not being populated nor are my buttons working. When I try to click a button, I get this in the URL:

http://webserver.page.aspx?__EVENTT...lCgK7q7GGCAKe5I/lCgKe5I/lCgKM54rGBgLSwpnTCA==

Any thoughts? TIA.
 
The web server currently has .NET 2.0. I created my project with .NET 2003 so I need .NET 1.1. I assumed that 2.0 would have everything. Do I need to remove 2.0 first, then install 1.1 and reinstall 2.0?
 
IIS can run 1.1 and 2.0 at the same time, so you have to set the framework version for each Web Application.
Maybe you still have to do this.
In IIS consolle select your application's folder, right click and choose Properties from contextual menu. Now select ASP.NET tab. Here you can set the framework version you want for your application (1.1.4322 I suppose)
 
Last edited:
Xtremer said:
IIS can run 1.1 and 2.0 at the same time, so you have to define the framework version for each Web Application.
Maybe you still have to do this.
In IIS consolle select your arrplication's folder, right click and choose Properties from contextual menu. Now select ASP.NET tab. Here you can set the framework version you want for your application (1.1.4322 I suppose)

I have it pointed to 1.1.4322, but it still doesn't work. It is very odd.
 
Did you deployed all files? (I mean also \bin contents) and are them the right versions (released or debug)?
 
Back
Top