Click here to Skip to main content
15,888,610 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i have converted 1 file to abc.vb to abc.dll



now i need to know

i have another page default.aspx.vb

how to call the functions in the .dll files and how to create .dll.refresh file and in which folder i need to place dll files
Posted
Comments
Tejas Vaishnav 29-Aug-12 9:11am    
you need to copy past that abc.dll files to your App_code folder or your bin folder

1 solution

In your asp.net project add a Reference to that abc.dll

Right click on your asp.net project --> Add Reference --> Go to tab "Browse" --> Search for your abc.dll.

in your default.aspx.vb add this
VB
Imports abc


Hope it helps.
 
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