Ask a Question related to Dreamweaver AppDev, Design and Development.
-
-D- #1
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 =
Request.QueryString('var1') y = Request.QueryString('var2') I want to
concatenate these values: z = x & y Then I want to return the value of z
in a QueryString: Response.Redirect('mypage.asp?newVariable=z') I've tried the
above, but it's not working. How can I do this? Thanks, -D-
-D- Guest
-
request.querystring questions
hi I have created a querystring based on title of books such as A B C D E and so on. For example, http://localhost/mysite/byTitle.aspx?Title=A. ... -
Cannot do simple Request.QueryString on IIS 6.0
I've encountered many problems upgrading my Win2K Server to Windows 2003 Server, not the least of which involve IIS 6.0 and ASP (classic) support. ... -
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... -
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")) ... -
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... -
CMBergin #2
Re: request querystring
x = Request.QueryString("var1")
y = Request.QueryString("var2")
z = x & y
Response.Redirect("myPage.asp?newvariable=" & z)
"-D-" <webforumsuser@macromedia.com> wrote in message
news:cvldq8$m27$1@forums.macromedia.com...setting> Using the querystring collection in ASP, I'm declaring variables andof z> each variable equal to querystring values: <% Dim x Dim y Dim z x =
> Request.QueryString('var1') y = Request.QueryString('var2') I want to
> concatenate these values: z = x & y Then I want to return the valuetried the> in a QueryString: Response.Redirect('mypage.asp?newVariable=z') I've> above, but it's not working. How can I do this? Thanks, -D-
>
CMBergin Guest



Reply With Quote

