what are the alternatives of SESSION VARIABLES?

What are the limitations of the session variable in developing large web application. Also what are the best alternatives of the session variables. Please provide me the alternatives of SESSION VARIABLES Answers: Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. … Read more

Implement a Save method for my object

I’m trying to improve my application’s design, So instead of calling the DataAccess layer from the presentation layer. I’ll try to implement a save method from my object in the BusinessObjects layer. but I’m not sure how to pass the object or it’s properties through the layers. for example in my old design I just create an instance of my object in the presentation layer and assign it’s properties then just call the DataAccess method for saving this info in the database and pass the object as a parameter as illustrated.