sunny_99
Posts: 20
|
| Posted: 12/03/2004, 6:45 AM |
|
hi
can anyboy tell me how to hide the values in the url
when i click an field in the form its relative value is
shown as in the url
http://localhost//Historydetails.asp?CustomerNumber=123457++++&ID=1214and............
so on
is there way by which i can hide the paramters
regards
|
 |
 |
wilco_wings
Posts: 11
|
| Posted: 12/03/2004, 2:28 PM |
|
You could use a frame...
http://piekiec.com
|
 |
 |
Oper
Posts: 1195
|
| Posted: 12/05/2004, 5:55 PM |
|
you mean hidde the address bar?
_________________
____________________________
http://www.7bz.com (Free CMS,CRM Developed in CCS)
http://www.PremiumWebTemplate.com
Affiliation Web Site Templates
Please do backup first |
 |
 |
sunny_99
Posts: 20
|
| Posted: 12/05/2004, 11:51 PM |
|
hi
thnaks for the reply
yes i would hid ethe url not the address bar
when i click on some items in the form then the corresponding value of that field is shown on the url which i dnt want to show
so i just want t o know how to hide the values in the url
regards
|
 |
 |
sunny_99
Posts: 20
|
| Posted: 12/05/2004, 11:51 PM |
|
hi
thanks for the reply
yes i would hid ethe url not the address bar
when i click on some items in the form then the corresponding value of that field is shown on the url which i dnt want to show
so i just want t o know how to hide the values in the url
regards
|
 |
 |
Oper
Posts: 1195
|
| Posted: 12/06/2004, 5:23 PM |
|
Oh yes, it will display even when you roll your mouse over the Link Text.
what i do for that case whne i use for referal stuff i call another URL sending the ID, and that URL use that ID to call the URL with the value you dont wnat to show. (work like a charm)
But maybe if you explain why should be hidded , someone coudl help you to look an alternated way.
How many Parameter/value are you sending?
How Many of then should be hide?
Why need to be hide?
Etc.
_________________
____________________________
http://www.7bz.com (Free CMS,CRM Developed in CCS)
http://www.PremiumWebTemplate.com
Affiliation Web Site Templates
Please do backup first |
 |
 |
Don Safar
|
| Posted: 12/07/2004, 7:32 AM |
|
I am not sure this is what you are trying to do, but use the onmouseover and
onmouseout inside your href to hide the URL params. here's a sample.
<a href="http://www.mysite.com?id=7" target="_blank"
onmouseover="window.status='http://www.anythingyouwanthere.com;return true;"
onmouseout="window.status=' ';return true;">
<img src="http://www.mysite.com/image-1060302-5021531" width="125"
height="125" alt="null" border="0"></a>
When the mouse passes over the link, it displays what you put within the
onmouseover.
"sunny_99" <sunny_99@forum.codecharge> wrote in message
news:641b07c09957b1@news.codecharge.com...
> hi
> can anyboy tell me how to hide the values in the url
>
> when i click an field in the form its relative value is
>
> shown as in the url
>
>
>
> http://localhost//Historydetails.asp?CustomerNumber=123457++++&ID=1214and............
> so on
>
> is there way by which i can hide the paramters
>
> regards
>
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |