infobih
Posts: 58
|
| Posted: 10/19/2006, 12:17 PM |
|
hi,
i have page a with grid a, and page b with grid b. how can i pass value from grid link a to grid b, but without using url parameter? please help
|
 |
 |
wkempees
Posts: 1679
|
| Posted: 10/19/2006, 2:47 PM |
|
The linking parameter is at the moment probably set to GET, set it to POST.
The receiving grid B is (I assume) in it's SQL getting its data through URL set it to Form.
Alternative could be to use a Session var.
Walter
_________________
Origin: NL, T:GMT+1 (Forumtime +9)
CCS3/4.01.006 PhP, MySQL .Net/InMotion(Vista/XP, XAMPP)
if you liked this info PAYPAL me: http://donate.consultair.eu
|
 |
 |
infobih
Posts: 58
|
| Posted: 10/20/2006, 3:42 AM |
|
thanks, but i can not pass value from gridform a to gridform b witi POST method. i used form instead url for receiving param. please give me some advice by using sessions
|
 |
 |
wkempees
Posts: 1679
|
| Posted: 10/20/2006, 4:09 PM |
|
I tried a few possibilities, but to no real avail.
Maybe someone else (ASP) can respond ........
I was thinking AddRequestParm.......
Walter
(Give up, Holiday ahead)
_________________
Origin: NL, T:GMT+1 (Forumtime +9)
CCS3/4.01.006 PhP, MySQL .Net/InMotion(Vista/XP, XAMPP)
if you liked this info PAYPAL me: http://donate.consultair.eu
|
 |
 |
Edd
Posts: 547
|
| Posted: 10/20/2006, 8:40 PM |
|
I have to admit the only way I can think of doing this with session objects is to use an intermidatory page where Page A calls Inermediate Page that reads the QueryString Sets the session objects.
The Intermediate page then does a "Server.transfer" (alterative to Response,Redirect) to Page B. You use the Server.Transfer method as it doesn't interfere with the page history.
Hope that helps.
Edd
_________________
Accepting and instigating change are life's challenges.
http://www.syntech.com.au |
 |
 |
infobih
Posts: 58
|
| Posted: 11/05/2006, 1:37 AM |
|
i was not sucessful implementing session as passing param. anyone could give us example to pass parameter between two pages, but avoid using url param (should use any hidden way).
thank you all
|
 |
 |
Oper
Posts: 1195
|
| Posted: 11/10/2006, 6:42 PM |
|
Cookies and Session will do the trick.
Could you explain what you wnat to do after passing parameter to treh 2nd page and could reply with some code, i guess.
http://www.GlobalDevelop.com
_________________
____________________________
http://www.7bz.com (Free CMS,CRM Developed in CCS)
http://www.PremiumWebTemplate.com
Affiliation Web Site Templates
Please do backup first |
 |
 |
infobih
Posts: 58
|
| Posted: 11/11/2006, 12:00 AM |
|
thanks.
i have classic directory explained in css. i pass param cat_id within url from page a. i need to pass cat_id_parent param also but hidden. in receiving page b i want display all related categories with same cat_id_parent which has to be passed from page a. i can not use url because dont want to change existing urls. thanks again
|
 |
 |
Oper
Posts: 1195
|
| Posted: 11/11/2006, 6:38 AM |
|
I did something quick, but as you can see no parameters are send
also i used one page just cause laziness you could do it from 1 page to another same way.
this is what you were talking about?
http://www.globaldevelop.com/GlobalDevelop/forum/forum_...sp?TID=306&PN=1
if not let me know and do another sample. but there are few other way to do (in fact lots)
this one is quick
Note: This way is Not Good sample to pass SecurityCode or Password
_________________
____________________________
http://www.7bz.com (Free CMS,CRM Developed in CCS)
http://www.PremiumWebTemplate.com
Affiliation Web Site Templates
Please do backup first |
 |
 |
Ravikumar
|
| Posted: 11/21/2006, 1:24 AM |
|
I have put the paging using php. When i click the page no, values will be passed to url. Using that i will display result for that page.
But, now i want the without passing the values in url.
Thanks,
Ravikumar S.
|
|
|
 |
Oper
Posts: 1195
|
| Posted: 11/24/2006, 10:08 PM |
|
then i dont undertand, the example i linked dont pass parameter by url
http://www.globaldevelop.com/CCSapp/HideParameter/categories.asp
or i'm missing somthing
_________________
____________________________
http://www.7bz.com (Free CMS,CRM Developed in CCS)
http://www.PremiumWebTemplate.com
Affiliation Web Site Templates
Please do backup first |
 |
 |