Click here to Skip to main content
15,885,366 members
Articles / Web Development / ASP.NET

any issues using HTTPContext outside of web project ?

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
7 Nov 2012CPOL 3.4K  
We have a web application with access to Business logic and data access in separate projects.The way it is designed, key values is never passed to data access layer or business logic. Instead business layer has a class which contains public read only property through which DAL layer access...

Alternatives

Members may post updates or alternatives to this current article in order to show different approaches or add new features.

Please Sign up or sign in to vote.
7 Nov 2012jim lahey
The data won't be overwritten when multiple users log in. It's a session variable and as the name suggests, it's per-session. Simply put, each user would have their own copy of the variable.Personally I wouldn't do it this way because you've tightly coupled your business logic to a web-only...

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions