Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Feb 22, 2013 04:44 AM by priyankmtr
Member
18 Points
51 Posts
Feb 22, 2013 02:34 AM|LINK
I am developing my application in 3 tire for the security reasons i want to hide my code so planint to dll my bal layer so it will be secured..
how to create dll file and how to use the dll and implement in project
can any one help me
Participant
822 Points
171 Posts
Feb 22, 2013 03:03 AM|LINK
http://www.c-sharpcorner.com/UploadFile/mahesh/dll12222005064058AM/dll.aspx
http://msdn.microsoft.com/en-us/library/3707x96z(v=vs.71).aspx
228 Points
57 Posts
Feb 22, 2013 03:07 AM|LINK
if you started as web application project, all the bal, dal dll's will be compiled and placed in the bin folder of the web project. you can just use the web site project for your production.
Contributor
2626 Points
526 Posts
Feb 22, 2013 04:44 AM|LINK
1. create a new web application in a new solution. name, suppose "UserView"
2. add a class project of windows in that solution. name it as "UserView.BAL"
3. add a class project of windows in that solution. name it as "UserView.DAL"
4. compile your solution.
5. Now add the reference of "UserView.BAL" in the project "UserView"
6. Now add the reference of "UserView.DAL" in the project "UserView.BAL"
7. Now you can use the 3 layer architecture by creating all the classes in BAL and DAL. you just need to add the namespace in you pages.
sai.oct13
Member
18 Points
51 Posts
how to create dll files of BAl,DAL Layers
Feb 22, 2013 02:34 AM|LINK
I am developing my application in 3 tire for the security reasons i want to hide my code so planint to dll my bal layer so it will be secured..
how to create dll file and how to use the dll and implement in project
can any one help me
aaa_78600
Participant
822 Points
171 Posts
Re: how to create dll files of BAl,DAL Layers
Feb 22, 2013 03:03 AM|LINK
http://www.c-sharpcorner.com/UploadFile/mahesh/dll12222005064058AM/dll.aspx
http://msdn.microsoft.com/en-us/library/3707x96z(v=vs.71).aspx
homertechnol...
Member
228 Points
57 Posts
Re: how to create dll files of BAl,DAL Layers
Feb 22, 2013 03:07 AM|LINK
if you started as web application project, all the bal, dal dll's will be compiled and placed in the bin folder of the web project. you can just use the web site project for your production.
priyankmtr
Contributor
2626 Points
526 Posts
Re: how to create dll files of BAl,DAL Layers
Feb 22, 2013 04:44 AM|LINK
1. create a new web application in a new solution. name, suppose "UserView"
2. add a class project of windows in that solution. name it as "UserView.BAL"
3. add a class project of windows in that solution. name it as "UserView.DAL"
4. compile your solution.
5. Now add the reference of "UserView.BAL" in the project "UserView"
6. Now add the reference of "UserView.DAL" in the project "UserView.BAL"
7. Now you can use the 3 layer architecture by creating all the classes in BAL and DAL. you just need to add the namespace in you pages.
(Mark as Answer If you find helpful)