Save value in the database

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • ssingh

    Save value in the database

    Hi Everyone,
    I have a main window which has a form in it. Inside the main window
    there is a button, which when clicked opens a pop window
    (showModaldialo g window). Inside that pop window I have a checkboxes,
    which user can check. When he is done selecting them, He clicks on
    "Done", which is of type button. My problem is when user clicks on
    Done, I am not able to retreive the values of the check box group. I
    could have used request object to retrieve the values, but that is
    functional only when the event is submit.

    Kindly advice me in this situation.

  • Mike Brind

    #2
    Re: Save value in the database


    ssingh wrote:[color=blue]
    > Hi Everyone,
    > I have a main window which has a form in it. Inside the main window
    > there is a button, which when clicked opens a pop window
    > (showModaldialo g window). Inside that pop window I have a checkboxes,
    > which user can check. When he is done selecting them, He clicks on
    > "Done", which is of type button. My problem is when user clicks on
    > Done, I am not able to retreive the values of the check box group. I
    > could have used request object to retrieve the values, but that is
    > functional only when the event is submit.
    >
    > Kindly advice me in this situation[/color]

    <input type="submit" name="done" value="Done">

    <%
    If Request.Form("d one") = "Done" Then
    ....

    --
    Mike Brind

    Comment

    Working...