request.querystring questions

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default 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

  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. 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 =...
    3. 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. ...
    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. 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...
  3. #2

    Default Re: request.querystring questions

    NW wrote:
    > 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?
    You'll need to create additional links/parameters to accomodate the numeric
    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

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