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...?
 
What about a plain old HTTP POST (vs GET)? Put the data in hidden form
fields.

Steve
 
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...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top