Ask a Question related to ASP.NET General, Design and Development.
-
Mark Miller #1
Method not found: System.Collections.Specialized.NameValueCollection System.Web.HttpRequest.get_QueryString().
I just recently started getting the above error on a page I am posting
MULTIPART/FORM-DATA. We have SoftArtisans FileUp component and Filter
installed on the server in question and up until a day or so ago everything
was working fine. I honestly can't remember changing anything since it was
last working. But I tried reinstalling the .Net Framework along w/ the
service pack, which didn't work. I also had v1.1 already installed but I
hadn't registered it (ASPNET_regiis.exe) so I did that as well since that
was how my development machine is configured. The error only occurs for one
page, the others on the server are fine. The page in question works fine on
my development machine. The page has the extension ".uplx" and is configured
in IIS to be handled by the ASPNET isapi filter. Also, machine.config is
configured as follows:
<httpHandlers>
<add verb="*" path="*.uplx"
type="System.Web.UI.PageHandlerFactory" />
<httpHandlers>
The server in question is W2K Server SP3 running IIS 5.0 .Net Framework v1.0
sp1, v1.1
Here is the error page:
//************************************************** ************************
**********************************
Server Error in '/' Application.
Method not found: System.Collections.Specialized.NameValueCollection
System.Web.HttpRequest.get_QueryString().
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.
Exception Details: System.MissingMethodException: Method not found:
System.Collections.Specialized.NameValueCollection
System.Web.HttpRequest.get_QueryString().
Source Error:
An unhandled exception was generated during the execution of the current web
request. Information regarding the origin and location of the exception can
be identified using the exception stack trace below.
Stack Trace:
[MissingMethodException: Method not found:
System.Collections.Specialized.NameValueCollection
System.Web.HttpRequest.get_QueryString().]
Sportshuddle.Stats.AffiliateEntry.Stories.Upload_I mages.Page_Load(Object
sender, EventArgs e) +0
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +29
System.Web.UI.Page.ProcessRequestMain() +718
Version Information: Microsoft .NET Framework Version:1.0.3705.288; ASP.NET
Version:1.0.3705.288
//************************************************** ************************
**********************************
I can't get the error page to show me the exact line that is causing the
error but here is the code that is causing the error:
//************************************************** ************************
**********************************
FileUp oFileUp = new FileUp(Context);
DataTable dtImages = BuildDataTable();
string sGalleryPath = Server.MapPath(@"/Images/Galleries");
Guid gdGalleryID = new Guid(Request.QueryString["GalleryID"].ToString());
hlViewGallery.NavigateUrl = @"editimages.aspx?SessionID=" +
Request.QueryString["SessionID"].ToString() +
"&GalleryID=" + Request.QueryString["GalleryID"].ToString();
//************************************************** ************************
**********************************
I have searched and I can't find anything about this error. Any help would
be greatly appreciated.
Mark Miller Guest
-
Unable to import binding - method not found - system.xml.serializa
Hello all - I am trying to consume a web service deployed on one server from another server, and keep getting the following error when I attempt... -
System.Net.WebException occurred in system.web.services.dll - HTTP status 405: Method not allowed.
Hi, Have anyone ever encountered an exception error: The request failed with HTTP status 405: Method not allowed when trying to remotely invoke a... -
Method not found: Void System.Threading.ThreadPool.GetMinThreads
I have just installed Windows Server 2003 as an upgrade and now get the following message when I run ASP.NET pages (ASP pages run fine): Method... -
Lsass.exe System error "object name not found". System keeps rebooting
When trying to install the drivers for the PCI modem in my laptop, prompted for the driver CD. Installed the driver without any errors but asked... -
Imports 'System.DirectoryServices' cannot be found.
Hello, I'm getting the following error message: "Compiler Error Message: BC30466: Namespace or type 'DirectoryServices' for the Imports... -
Mark Miller #2
Re: Method not found: System.Collections.Specialized.NameValueCollection System.Web.HttpRequest.get_QueryString().
Well, I ended up uninstalling EVERYTHING involved; FileUp 4.0.7, .NET
Framework (v1.0 & v1.1), and IIS. Then reinstalled it in reverse order and
that solved the problem. If anybody has any ideas why this happened I would
appreciate it.
"Mark Miller" <no_mark_spam@waveshift.com> wrote in message
news:%23Av%23GWVTDHA.2228@tk2msftngp13.phx.gbl...everything> I just recently started getting the above error on a page I am posting
> MULTIPART/FORM-DATA. We have SoftArtisans FileUp component and Filter
> installed on the server in question and up until a day or so agoone> was working fine. I honestly can't remember changing anything since it was
> last working. But I tried reinstalling the .Net Framework along w/ the
> service pack, which didn't work. I also had v1.1 already installed but I
> hadn't registered it (ASPNET_regiis.exe) so I did that as well since that
> was how my development machine is configured. The error only occurs foron> page, the others on the server are fine. The page in question works fineconfigured> my development machine. The page has the extension ".uplx" and isv1.0> in IIS to be handled by the ASPNET isapi filter. Also, machine.config is
> configured as follows:
>
> <httpHandlers>
> <add verb="*" path="*.uplx"
> type="System.Web.UI.PageHandlerFactory" />
> <httpHandlers>
>
> The server in question is W2K Server SP3 running IIS 5.0 .Net Framework//************************************************** ************************> sp1, v1.1
>
> Here is the error page:
>web> **********************************
> Server Error in '/' Application.
>
>
> Method not found: System.Collections.Specialized.NameValueCollection
> System.Web.HttpRequest.get_QueryString().
> Description: An unhandled exception occurred during the execution of the
> current web request. Please review the stack trace for more information
> about the error and where it originated in the code.
>
> Exception Details: System.MissingMethodException: Method not found:
> System.Collections.Specialized.NameValueCollection
> System.Web.HttpRequest.get_QueryString().
>
> Source Error:
>
> An unhandled exception was generated during the execution of the currentcan> request. Information regarding the origin and location of the exceptionSportshuddle.Stats.AffiliateEntry.Stories.Upload_I mages.Page_Load(Object> be identified using the exception stack trace below.
>
> Stack Trace:
>
> [MissingMethodException: Method not found:
> System.Collections.Specialized.NameValueCollection
> System.Web.HttpRequest.get_QueryString().]
>ASP.NET> sender, EventArgs e) +0
> System.Web.UI.Control.OnLoad(EventArgs e) +67
> System.Web.UI.Control.LoadRecursive() +29
> System.Web.UI.Page.ProcessRequestMain() +718
>
> Version Information: Microsoft .NET Framework Version:1.0.3705.288;//************************************************** ************************> Version:1.0.3705.288
>//************************************************** ************************> **********************************
>
> I can't get the error page to show me the exact line that is causing the
> error but here is the code that is causing the error:
>
>//************************************************** ************************> **********************************
> FileUp oFileUp = new FileUp(Context);
> DataTable dtImages = BuildDataTable();
> string sGalleryPath = Server.MapPath(@"/Images/Galleries");
> Guid gdGalleryID = new Guid(Request.QueryString["GalleryID"].ToString());
> hlViewGallery.NavigateUrl = @"editimages.aspx?SessionID=" +
> Request.QueryString["SessionID"].ToString() +
> "&GalleryID=" + Request.QueryString["GalleryID"].ToString();
>> **********************************
>
> I have searched and I can't find anything about this error. Any help would
> be greatly appreciated.
>
>
Mark Miller Guest



Reply With Quote

