RoyBaird
Posts: 115
|
| Posted: 07/21/2004, 3:19 PM |
|
Can someone explain this to me? I can not find a good definition in any of the CCS docs. I want to redirect to a "grid" with a parameter from a "record".
Redirect = "Detail_list.asp?" & CCGetQueryString("QueryString", Array("ccsForm"))
What is "CCGetQueryString" ?
What is "QueryString" ?
What is "Array("ccsForm" ?
Thanks!
_________________
Roy |
 |
 |
marcwolf
Posts: 361
|
| Posted: 07/28/2004, 10:31 PM |
|
Querystring is what is passed to the server.
There are two ways of sending data from a browser to a server. One is GET (via the QueryString) and the other is POST (via a form vairable)
CCGetQueryString is the command within CodeCharge that is used to get the quesrystring from the server from processing
One of the tings that CodeCharde does is get all of the form variables and puts them into an array for convienence and that array is ccsForm
The above line will call that form and generate a list of all of the variable send via the from.
_________________
' Coding Coding Coding
Keep Those Keyboards Coding.
Raw Code!!!!!!!
|
 |
 |
|