
masster
|
| Posted: 04/19/2002, 5:01 AM |
|
Nicole,
Sorry, the address is http://www.theu.ro/test.zip.
Awaiting help...
Thank you.
|
|
|
 |
Nicole
|
| Posted: 04/19/2002, 5:23 AM |
|
I think that cont_pers form on personal page is designed slightly incorrect.
First, if you use Input variables of session type you should create custom session variables c_id and s_id somewhere. I haven't found where have you create session variables.
If you want to pass parameters through URL use 'Param' type instead 'Session' input parameters.
Further, when parameter is marked as 'Required' and it isn't passed to the form you'll get empty recordset.
|
|
|
 |
masster
|
| Posted: 04/19/2002, 10:03 AM |
|
Nicole,
Two session variables were already set in appreg page/Events/After Insert: c_id and s_id.
But there is nothing passed between visa_b1_quest or visa_b2_quest and personal page. My grid form has no records. Why?
|
|
|
 |
Nicole
|
| Posted: 04/20/2002, 2:53 AM |
|
Hello,
do not know why it happens but I've renamed session variable from "c_id" to "id" and it make the code work. Session is not empty now. Here is code I currently use in After Update event of appreg page->ClientReg form:
$fldc_id = mysql_insert_id();
set_session("id", $fldc_id);
set_session("s_id", $flds_id);
Also do not forget to change var name on the rest forms.
|
|
|
 |
|

|