Results 1 to 2 of 2

Thread: how do i do "View.Html?=hello

  1. #1

    Thread Starter
    Addicted Member DigitalMyth's Avatar
    Join Date
    Nov 2002
    Location
    England..
    Posts
    169

    how do i do "View.Html?=hello

    what are this these things called at the end of the address, and how do i do it.

    ?=182

    Thanks

  2. #2
    Lively Member
    Join Date
    Feb 2001
    Location
    Sweden, Sthlm
    Posts
    112
    hi!

    its called querystring and is used to pass parameters
    to a asp or php page..

    ex:
    hello.asp?id=100&name=gameboy

    id and name are the parameter names and
    100 and gameboy is the values

    in your asp page u can get this values by
    writing

    <%
    id = request.querystring("id")
    name = request.querystring("name")
    %>

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width