Link to home
Start Free TrialLog in
Avatar of bbkevin
bbkevin

asked on

App_Code Folder

Hi Experts,

According to company requirements, I have created a Web site project rather than Web Application Project. Now I am designing to create 3-tier architecture folders.

- \App_Code\DAL
- \App_Code\BLL
- \App_Code\
- \Bin
- Login.aspx
- Default.aspx

But the shared code seems to require to create within App_Code folder.
Is it able to put DAL BLL folder under the root directory?
Avatar of wdfdo1986
wdfdo1986
Flag of Sri Lanka image

Yes. We have implemented MVC and we created seperate folders for Model View and Controller
Do u use any plugins during this implementation?
If so there can be problems
ASKER CERTIFIED SOLUTION
Avatar of n_vijay
n_vijay
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bbkevin
bbkevin

ASKER

Hi wdfdo1986,
No, I am designing a new architecture. I know MVC is a good architecture, but I need to concern other programmer willing to pick up new languages... So I am creating a single website to simulate 3-Tier architecture.

Hi n_vijay,
According to my situation, I would like to build a single web site. Is it able to put other folder such as BLL, DAL folder outside App_Code folder but can be accessed by other pages / classes?
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bbkevin

ASKER

Thanks for yours suggestions!
I put all the shared code in the App_Code folder finally.