Ask a Question related to ASP.NET, Design and Development.
-
Daniel Bass #1
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
-
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")) ... -
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... -
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 =... -
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... -
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... -
Kerberoz #2
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...a> request.params for asp.net is the httprequest object, and this method gets> 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
-
dave wanta #3
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...a> request.params for asp.net is the httprequest object, and this method gets> 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



Reply With Quote

