help [ASp]

Discussion in 'Web Development' started by bob20, Jul 22, 2006.

  1. bob20

    bob20 New Member

    Joined:
    Jul 22, 2006
    Messages:
    3
    Likes Received:
    0
    Trophy Points:
    0
    hi guys im new here and i appreciate this site

    well i have problem in my asp class
    can you guys help me pls....its very important

    how to search?

    example i have textbox and a search button if i will click the search button it will display what i inputed in textbox.or the form will display.

    pls.. guys help me

    asp code with vbscript not asp.net

    pls...
     
  2. shabbir

    shabbir Administrator Staff Member

    Joined:
    Jul 12, 2004
    Messages:
    15,376
    Likes Received:
    388
    Trophy Points:
    83
    Just submit the form using a variable say

    <form method="get" action="search.asp?do=ShowResults">

    Now Depending on the content of the do variable either display the form or the results.
    Code:
    e.g.
    if request.querystring("do") = "ShowResults" then
      'Show Results here
    else
      'Show the form
    end if
     
  3. bob20

    bob20 New Member

    Joined:
    Jul 22, 2006
    Messages:
    3
    Likes Received:
    0
    Trophy Points:
    0
    thank you shabbir


    how about poll?

    yes/no option then when i click either of the two option the progress bar will update?
    how to make this one?
    pls........

    thank you.....

    do you have some tutorial in asp?
     
  4. shabbir

    shabbir Administrator Staff Member

    Joined:
    Jul 12, 2004
    Messages:
    15,376
    Likes Received:
    388
    Trophy Points:
    83
    Which progress bar you are talking about?

    Look at [thread=4]Begining ASP[/thread] thread for some good ASP tutorials and links.
     
  5. bob20

    bob20 New Member

    Joined:
    Jul 22, 2006
    Messages:
    3
    Likes Received:
    0
    Trophy Points:
    0
    what i mean is that an example of an onlinE POLLINg.

    it has progress bar which determine the result of survey/poll.
     
  6. shabbir

    shabbir Administrator Staff Member

    Joined:
    Jul 12, 2004
    Messages:
    15,376
    Likes Received:
    388
    Trophy Points:
    83

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice