Franklin
|
| Posted: 02/22/2005, 5:17 AM |
|
Hi
I saw the report like a grid that you have and I used it.
but now I want to create 2 sesion variable.
I dont know if I can do that.
I want to know if I have to use the sesion variable or I can use a diferent name.
|
|
|
 |
mrachow
Posts: 509
|
| Posted: 02/23/2005, 12:13 AM |
|
You would use session variables if you would like to have these values persistent for session life time.
You can create session varables with names to your liking by
session("yourName") = yourValue
for example
session("surname") = "Body"
_________________
Best regards,
Michael |
 |
 |
|