Share session (asp->asp.net) security -


Let me share the session to pass data from aspx asp page Required for . I found that solution:

one ?? ¢ pass data through hidden form
a ?? ¢ Passed data through the database

I have tried the method with the method and it worked fine (after some modification) Now the method I am trying with the database is the eashe imho, So I wonder if the second method is more secure (and better) than before?
And what potential methods exist in these ways?

The first solution is definitely less secure as you are sending session data to the customer and then returning it are obtained. This means that it is possible for the client to modify the data for someone who they post back to your page. It removes one of the best things about sessions, which only programmers control them. In a way, the first method is similar to using cookies. For the second method, it can be more difficult, but I will definitely suggest it first.

Comments