Ask a Question related to ASP.NET General, Design and Development.
-
Dave #1
Deployment/References
I created a deployment project for a small web app using
VS.net. It works fine on my development machine but on
the deployment machine I get
System.MissingMethodException: Method not found:
System.Collections.Specialized.NameValueCollection
System.Web.HttpRequest.get_QueryString().
Stack Trace:
[MissingMethodException: Method not found:
System.Collections.Specialized.NameValueCollection
System.Web.HttpRequest.get_QueryString().]
Nanuuk.GUI.Freedom.BindGrid() +0
Nanuuk.GUI.Freedom.Page_Load(Object sender, EventArgs e)
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +29
System.Web.UI.Page.ProcessRequestMain() +724
I haven't been able to decode this. There is a reference
to "System.Dll" in the project so a call to
System.Collection ought to be OK, no? In "BindGrid" there
is a Request.QueryString:
If Not Request.QueryString("Page") Is Nothing Then
CurPage=Convert.ToInt32(Request.QueryString("Page" ))
Else
CurPage=1
End If
I can't figure out why this error is thrown. Any Ideas?
Thanks...
Dave Guest
-
Deployment
What's the best way in ASP .Net to deploy an app from a development machine to a production machine? Also, do all files (.vbproj, etc) need to be... -
MX7 and jar deployment
In MX6.1 we were deploying java components by simply dropping a jar file to CFusionMX\wwwroot\WEB-INF\lib folder and then restarting CF Server... -
Deployment Q
If you have an ASPX app which calls a WebSvc do you need to deploy the WebReference folder or not? bin\foo.dll foo.aspx webREference? needed or... -
Help with Deployment!
I have a web service running fine on my dev machine, and on a server on my network. When I try to deploy it to a client, when I browse the ASMX... -
Web App Deployment
I ran into this problem, and tried everything that everyone suggested. After carefully debugging the installer with a series of message boxes, I...



Reply With Quote

