Click here to Skip to main content
15,881,516 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
How to Create DLL in asp.net and use it in Another Project.
Please Suggest me some idea.

--Indrish
Posted

Hi indrish,

Go through the following video
click here

I hope,it clears your problem.

Have a good time!!!
 
Share this answer
 
Make a class project.Build this project.Then go to debug folder.There you will find the dll file.dll is ready for use.
cheers...
 
Share this answer
 
Have you created dll successfully after all this solution ?

I'm not posting my answer because my answer is similar to all above.


Jagriti software ke andar karega kya?

Yogesh.
 
Share this answer
 
create a class library project choose the languag whatever you want (C#,vb...)write whatever logic you want then build that library by right clicking the solution you can get the dlls of that project in bin folder of your project.

their are two option to build the project in release mode/ debug mode. it will always better to chose release mode when you are going to deploy
 
Share this answer
 
no change in windows applications or web application in creating dlls

add classlibrary write u r code in .cs files then click on debug it will give u dll.
thats it
 
Share this answer
 
follow below steps:

1. Open Visual studio click File--> New project
2. Select a class library, write functions, properties in class
3. When you build the solution, a DLL will be created in your bin folder
4. You can then add as a reference to your web project. by rightclick--> add
reference
5. use using directive to use DLL in your code
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900