Brandy
|
| Posted: 05/16/2003, 8:06 AM |
|
I created a registration form using the CCS template.
I want to put an event that will only show the Search field and hide the grid until after a search request is made. and the display the search results.
could someone help me with this
|
|
|
 |
rclayh
|
| Posted: 05/16/2003, 9:33 AM |
|
Post specifics about which language and platform you are using.
|
|
|
 |
Brandy
|
| Posted: 05/16/2003, 1:07 PM |
|
I am using ASP with CCS 2.0
|
|
|
 |
Brandy
|
| Posted: 05/16/2003, 1:07 PM |
|
I am using ASP with CCS 2.0
|
|
|
 |
lneisius
|
| Posted: 05/16/2003, 1:25 PM |
|
This is a method I used on one page:
Search.Visible = False
If CCGetFromGet("Search","") <> "" Then Search.Visible = True
If CCGetFromGet("s_Member","") <> "" Then Search.Visible = True
If CCGetFromGet("s_MemberStatusID","") <> "" Then Search.Visible = True
If CCGetFromGet("s_MemberGroupID","") <> "" Then Search.Visible = True
Hope it helps
|
|
|
 |
|