important query:::::

  • Thread starter Thread starter bushi
  • Start date Start date
B

bushi

hi every one!
i'm developing a web application in asp.net,c#(VS 2005).
for the security of the administrator i have to pass some
information to the next page(as we can do with html pages using query
string).so that user cant directly access that page.i tried the same
thing with asp.net but its not working.any idea or guidance related to
it will appriciated.
 
hi every one!
i'm developing a web application in asp.net,c#(VS 2005).
for the security of the administrator i have to pass some
information to the next page(as we can do with html pages using query
string).so that user cant directly access that page.i tried the same
thing with asp.net but its not working.any idea or guidance related to
it will appriciated.

page.aspx?parameter=value
 
Hello Alexey,

It depends on the security OP want to use, to send data to the next page,
because the recommended solution suffer from spoffing.

There is a number alternative, more secure ways - using DB, encrypting, certificates

---
WBR, Michael Nemtsev [.NET/C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo

AS> page.aspx?parameter=value
AS>
 
if you are concerned about using the query string, stick the data in a
Session variable prior to going to the next page. You can pick it up in the
next page out of Session.
Peter
 
Back
Top