Ask a Question related to Dreamweaver AppDev, Design and Development.
-
NW #1
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, [url]http://localhost/mysite/byTitle.aspx?Title=A[/url].
However, some books which I have start with numbers like 101 Engage Rules, 20
Steps to prosperity, and so on. How do I fix the querystring or do i need to
create another dataset that handles only numbers?
Thanks
NW 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")) ... -
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 =... -
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... -
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... -
Kindler Chase #2
Re: request.querystring questions
NW wrote:
You'll need to create additional links/parameters to accomodate the numeric> hi
>
> I have created a querystring based on title of books such as A B C D
> E and so on. For example,
> [url]http://localhost/mysite/byTitle.aspx?Title=A[/url].
>
> However, some books which I have start with numbers like 101 Engage
> Rules, 20 Steps to prosperity, and so on. How do I fix the
> querystring or do i need to create another dataset that handles only
> numbers?
titles:
byTitle.aspx?Title=0
byTitle.aspx?Title=1
byTitle.aspx?Title=2
byTitle.aspx?Title=3
etc...
(should only need 0-9)
--
kindler chase
[url]http://www.ncubed.com[/url]
Home of SuperInvoice's Groove Thang
[url]news://news.ncubed.com/support[/url]
n3 Support Group
Kindler Chase Guest



Reply With Quote

