afrausto
Posts: 66
|
| Posted: 11/22/2004, 8:30 PM |
|
Hello,
I'm using CCS / ASP for my project. In my project I have a page, called Step1.asp, that contains a form with several checkboxes. Based on the items checked in Step1.asp when the form is submitted it calls another page, Step2.asp. Step2.asp, displays another form listing rows of text boxes depending on which check boxes were checked on Page1.asp. The text boxes in Step2.asp are all required. I've used the method in the CCS help "Hiding a Record Form Control" to hide any rows that were not checked in Step1. The problem occurs when I submit the form in Step2.asp. The validation does not permit me to continue to Step3.asp, because it requires a valid entry, even though that textbox is not visible. Why would a valid entry be required for a row that has been hidden in a form?
Anyone have any ideas or suggestions on how to approach this?
Thanks,
Albert
|
 |
 |
mrachow
Posts: 509
|
| Posted: 11/22/2004, 11:42 PM |
|
I suppose CCS works on all records of the grid query/result set. The records are contained there. That you don't display them is a secondary thing.
In a similar situation I had chosen to store the checkbox' values into the database. By that I have not to hide records on the second page since I'm selecting only the checked ones.
Kindly regards,
Michael
_________________
Best regards,
Michael |
 |
 |
|