bigb42
|
| Posted: 07/17/2003, 7:41 PM |
|
This is what I want to do. I want to have a form in which I fill in (this is already completed). I want to pass the information to a layout/print page which displays the information placed in the form in a formatted manner. I can do this with using some form of id such as "profile_id". But this is what I want to do. I want to add another id such as "profile_group_id". With this variable I will pass it to the next page, but depending on the id, it will show a different formated page.
An example of this would be a return form for products of different company's. Each company has a different return form. So entering the standard information on one page and selecting that company "profile_goup_id" the information will be passed to the next page displaying all info in their particular form.
Is there a way of doing this.
I currently use php/mysql and CCS
Regards
|
|
|
 |
Kip Dole
|
| Posted: 07/18/2003, 1:24 PM |
|
This is what I did for CC maybe you could do the same thing with CCS. I created a new page called pg_redirect and placed this code in the Open event.
If Session("UserCompany") = 2 then
Response.Redirect "Default.asp"
Else
Response.Redirect "page_call_log_customer_grid.asp"
End If
Good luck.
|
|
|
 |
|