difference bet. request.querystring and Request.Params

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

  1. #1

    Default Re: difference bet. request.querystring and Request.Params

    request.params for asp.net is the httprequest object, and this method gets a
    combined collection of querystring, cookies, form and servervars items...

    querystring just gets querystring.

    "Kerberoz" <dec698@hotmail.com> wrote in message
    news:O86AMWgQDHA.2320@TK2MSFTNGP12.phx.gbl...
    > whats the difference between...
    > Request.Params("ProductID")
    >
    > and
    >
    > request.querystring("produceid")
    >
    >

    Daniel Bass Guest

  2. Similar Questions and Discussions

    1. What is the difference between REQUEST and REQUEST.QUERYSTRING?
      What is the difference between these two statements? They seem to do the same thing... response.write(request("variable")) ...
    2. Accessing request params during callbacks (ASP.Net 2.0)
      Hi everybody Does anybody know whether it is possible to access the form input values (usually available via the Params collection of the Request...
    3. request querystring
      Using the querystring collection in ASP, I'm declaring variables and setting each variable equal to querystring values: <% Dim x Dim y Dim z x =...
    4. Confused about a REQUEST.FORM and a REQUEST.QUERYSTRING
      This is snipit of code, supplied by PayPal with explanation about what has to be done to access their back end. I am confused because they first...
    5. best way to get data: request.form, request.params, controlname.value
      Hi! I think I remember somewhere that using request.form was a bad idea (I can't say I remember why). So I'm wondering: What is the best way to...
  3. #2

    Default Re: difference bet. request.querystring and Request.Params

    thankz daniel... that sure help me understand things....

    "Daniel Bass" <danielbass@postmaster.co.uk> wrote in message
    news:e6aGeBhQDHA.2212@TK2MSFTNGP12.phx.gbl...
    > request.params for asp.net is the httprequest object, and this method gets
    a
    > combined collection of querystring, cookies, form and servervars items...
    >
    > querystring just gets querystring.
    >
    > "Kerberoz" <dec698@hotmail.com> wrote in message
    > news:O86AMWgQDHA.2320@TK2MSFTNGP12.phx.gbl...
    > > whats the difference between...
    > > Request.Params("ProductID")
    > >
    > > and
    > >
    > > request.querystring("produceid")
    > >
    > >
    >
    >

    Kerberoz Guest

  4. #3

    Default Re: difference bet. request.querystring and Request.Params

    doesn't Request.Params also include the Context.Items collection?

    Cheers!
    Dave
    [url]www.aspNetEmail.com[/url]


    "Daniel Bass" <danielbass@postmaster.co.uk> wrote in message
    news:e6aGeBhQDHA.2212@TK2MSFTNGP12.phx.gbl...
    > request.params for asp.net is the httprequest object, and this method gets
    a
    > combined collection of querystring, cookies, form and servervars items...
    >
    > querystring just gets querystring.
    >
    > "Kerberoz" <dec698@hotmail.com> wrote in message
    > news:O86AMWgQDHA.2320@TK2MSFTNGP12.phx.gbl...
    > > whats the difference between...
    > > Request.Params("ProductID")
    > >
    > > and
    > >
    > > request.querystring("produceid")
    > >
    > >
    >
    >

    dave wanta Guest

Posting Permissions

  • You may not post new threads
  • You may not 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