drpcken
Posts: 60
|
| Posted: 02/16/2005, 12:41 PM |
|
Hey guys, I've been doing all my work in vb.net in CCS so far, well now I have to do a module in ASP.
How do I grab the parameter value or check it in ASP? in vb.net i woudl use this.
request.item("Param") to see if it was there and
request.querystring("Param") to get its value.
I also need to hide a form based on the parameter, and I use to reference it like FormnameControl.property
Is this the same in asp?
Thanks !!
|
 |
 |
mrachow
Posts: 509
|
| Posted: 02/16/2005, 11:51 PM |
|
How to reference works in equal manner.
For access to parameters there is a Studio function for ASP
CCGetParam(ParameterName, DefaultValue)
_________________
Best regards,
Michael |
 |
 |
Nicole
Posts: 586
|
| Posted: 02/17/2005, 2:44 AM |
|
Hello,
To hide a form you need to set its Visible property to false in form’s or page’s Before Show event. E.g.
Form_name.Visible = false
Several other samples are available in online docs http://docs.codecharge.com/studio/html/ProgrammingTechn...deGrid.html?toc http://docs.codecharge.com/studio/html/ProgrammingTechn...ontrol.html?toc
_________________
Regards,
Nicole |
 |
 |
|