User ciroric - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T04:02:34Zhttp://stackoverflow.com/feeds/user/579http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/4320/asp-net-2-0-application-without-business-logic-layer1ASP.Net 2.0 Application without Business Logic Layer?ciroric2008-08-07T02:41:24Z2009-10-23T07:59:29Z
<p>Is it "acceptable" to have an ASP.Net 2.0 application without the BLL (Business Logic Layer) as the following?</p>
<ol>
<li>SQL Server Data Storage & Stored Procedures</li>
<li>Data Link Layer (Strongly Typed Table Adapters) connecting to Stored Procs</li>
<li>Presentation Layer ASPX Pages with Code behind and ObjectDataSource for connection straight to the DLL</li>
</ol>
<p>Is a BLL always preferable, even if business logic is entirely validatable in the presentation's code behind? What are the potential drawbacks for not using a BLL?</p>
http://stackoverflow.com/questions/6798/should-management-give-up-the-code/6808#68080Answer by ciroric for Should management give up the code?ciroric2008-08-09T15:14:09Z2008-08-09T15:14:09Z<p>I think your last sentence says it all. I think it would be valuable for the developer turned into manager to continue coding (one never know what life throws at you), but realistically, it is obviously all depending on the corporate philosophy and it is subject to the office conditions, the actual needs, senior management's attitude and the individual's involvement with coding activities and overall personal scheduling and time scenarios.</p>http://stackoverflow.com/questions/6719/asp-net-master-pages/6799#67990Answer by ciroric for ASP.NET Master Pagesciroric2008-08-09T15:01:41Z2008-08-09T15:01:41Z<p>I echo other voices in here. I have used Master Pages in 2.0 and the feature have been great to me. I have been embedding banners, standardized background, captures from Active Dir and other JavaScript features on it for use throughout the app, maintaining the look and feel consistency and without the need to duplicate the effort on multiple pages. Great feature.</p>