DATA THROUGH QUERYSTRING

  • Thread starter Thread starter vinodkus
  • Start date Start date
V

vinodkus

DEAR SIR/MADAM
I WANT TO SEND DATA THROUGH QUERYSTRING BUT I DONT WANT TO SHOW
DATA IN URL. HAVE U ANY METHOD PLEASE TELL ME.

THANKS IN ADVANCE
 
I WANT TO SEND DATA THROUGH QUERYSTRING BUT I DONT WANT TO SHOW
DATA IN URL. HAVE U ANY METHOD PLEASE TELL ME.

Firstly, turn off your CapsLock...

Whatever you put in the QueryString will be displayed in the browser -
that's just the way it works...

You could encrypt the data...

Does it *have* to be via a QueryString...? Can't you use the Session object
instead...?
 
Firstly, turn off your CapsLock...

Whatever you put in the QueryString will be displayed in the browser -
that's just the way it works...

You could encrypt the data...

Does it *have* to be via a QueryString...? Can't you use the Session
object instead...?

What about a plain old HTTP POST (vs GET)? Put the data in hidden form
fields.[/QUOTE]

Sure - why not...? There are several ways in ASP.NET to pass data between
pages without using a QueryString...
 
Back
Top