Nido
|
| Posted: 11/26/2002, 12:22 PM |
|
Hello all,
I am using CodeCharge 2, ASP with Templates. I have a page with search form and grid - and another form for menu items like reload/logoff/mainmenu etc. This is what I want to do:
I don't want to show the search form (initially) when the user loads the page, just want to show the gird and menu.
In my menu I would like to have a link to show/hide search form. When the user clicks on show/hide search form link in the menu then it should display the form otherwise leave it hidden.
Any help would be appreciated.
|
|
|
 |
Alex Alexapolsky
|
| Posted: 11/27/2002, 5:38 AM |
|
You can hide form via custom code put into "before show" event of the search form,
e.g.
if CCGetParam("hide","") = true then FormName.Visible = false
Regard,s
Alex
|
|
|
 |
|