|
Home > Archive > IIS ASP > June 2006 > Save value in the database
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Save value in the database
|
|
| ssingh 2006-06-30, 7:20 pm |
| 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
(showModaldialog 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 2006-06-30, 7:20 pm |
|
ssingh wrote:
> 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
> (showModaldialog 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
<input type="submit" name="done" value="Done">
<%
If Request.Form("done") = "Done" Then
....
--
Mike Brind
|
|
|
|
|