|
 |
asp_databases thread: Sending Information.
Message #1 by Dan Whitmarsh <whitmarshdaniel@y...> on Tue, 4 Feb 2003 03:43:20 -0800 (PST)
|
|
Does any one know hom to send hidden fields so that do
not get shown when the source is viewed. I have to
pass over a price and quantity of a product and want
to do this using a hidden field, but i dont want this
hidden field shown.
Thanks
Dan
__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com
Message #2 by "slakshmi" <slakshmi@i...> on Tue, 4 Feb 2003 17:15:24 +0530
|
|
Hi,
Rather you can restrict view source..
by controlling rightclick and setting browser without toolbar.
Hope this helps,
Cheers,
Sree.
----- Original Message -----
From: "Dan Whitmarsh" <whitmarshdaniel@y...>
To: "ASP Databases" <asp_databases@p...>
Sent: Tuesday, February 04, 2003 5:13 PM
Subject: [asp_databases] Sending Information.
> Does any one know hom to send hidden fields so that do
> not get shown when the source is viewed. I have to
> pass over a price and quantity of a product and want
> to do this using a hidden field, but i dont want this
> hidden field shown.
>
> Thanks
>
> Dan
>
> __________________________________________________
> Do you Yahoo!?
> Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
> http://mailplus.yahoo.com
>
Message #3 by Dan Whitmarsh <whitmarshdaniel@y...> on Tue, 4 Feb 2003 03:49:48 -0800 (PST)
|
|
Cheers, but it is going to be hosted, so this isnt an
option.
--- slakshmi <slakshmi@i...> wrote:
> Hi,
> Rather you can restrict view source..
> by controlling rightclick and setting browser
> without toolbar.
> Hope this helps,
> Cheers,
> Sree.
> ----- Original Message -----
> From: "Dan Whitmarsh" <whitmarshdaniel@y...>
> To: "ASP Databases" <asp_databases@p...>
> Sent: Tuesday, February 04, 2003 5:13 PM
> Subject: [asp_databases] Sending Information.
>
>
> > Does any one know hom to send hidden fields so
> that do
> > not get shown when the source is viewed. I have to
> > pass over a price and quantity of a product and
> want
> > to do this using a hidden field, but i dont want
> this
> > hidden field shown.
> >
> > Thanks
> >
> > Dan
> >
> > __________________________________________________
> > Do you Yahoo!?
> > Yahoo! Mail Plus - Powerful. Affordable. Sign up
> now.
> > http://mailplus.yahoo.com
> >
>
>
__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com
Message #4 by "Kim Iwan Hansen" <kimiwan@k...> on Tue, 4 Feb 2003 13:32:50 +0100
|
|
..and then you disable javascript and reload the page and you'll have the
source. You can't prevent people from viewing your html/javascript source.
You could use cookies or session variables to contain those values you don't
want shown.
-Kim
-----Original Message-----
From: slakshmi [mailto:slakshmi@i...]
Sent: 4. februar 2003 12:45
To: ASP Databases
Subject: [asp_databases] Re: Sending Information.
Hi,
Rather you can restrict view source..
by controlling rightclick and setting browser without toolbar.
Hope this helps,
Cheers,
Sree.
----- Original Message -----
From: "Dan Whitmarsh" <whitmarshdaniel@y...>
To: "ASP Databases" <asp_databases@p...>
Sent: Tuesday, February 04, 2003 5:13 PM
Subject: [asp_databases] Sending Information.
> Does any one know hom to send hidden fields so that do
> not get shown when the source is viewed. I have to
> pass over a price and quantity of a product and want
> to do this using a hidden field, but i dont want this
> hidden field shown.
>
> Thanks
>
> Dan
>
> __________________________________________________
> Do you Yahoo!?
> Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
> http://mailplus.yahoo.com
>
Message #5 by "Peter Foti (PeterF)" <PeterF@S...> on Tue, 4 Feb 2003 12:04:50 -0500
|
|
Price and quantity seem like odd things to worry about keeping hidden. But
if it really means that much to you, you could:
1. Store the values in Session variables or cookies (requires that the user
have cookies enabled)
2. Store the values in a temporary table (I've never tried this, so not sure
how well it would work)
3. Encrypt the values and store the encrypted values in your hidden form
items, then decrypt them when you need them. You'll need to write an
encrypt/decrypt algorithm for that (or find one on the web).
There may be more options, but those are the ones that come to mind.
Regards,
Peter Foti
> -----Original Message-----
> From: Dan Whitmarsh [mailto:whitmarshdaniel@y...]
> Sent: Tuesday, February 04, 2003 6:43 AM
> To: ASP Databases
> Subject: [asp_databases] Sending Information.
>
>
> Does any one know hom to send hidden fields so that do
> not get shown when the source is viewed. I have to
> pass over a price and quantity of a product and want
> to do this using a hidden field, but i dont want this
> hidden field shown.
>
> Thanks
>
> Dan
>
> __________________________________________________
> Do you Yahoo!?
> Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
> http://mailplus.yahoo.com
>
>
|
|
 |