Method not found: System.Collections.Specialized.NameValueCollection System.Web.HttpRequest.get_QueryString().

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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...
    > 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139