Use library

S

shapper

Hello,

In a web site application in VS 2008 where should I place third party
DLL files and what is the best way to make them available, including
the namespaces, to my web application?

Thanks,

Miguel
 
C

Cowboy \(Gregory A. Beamer\)

They go in the bin as references.

As far as namespace availability, it really depends. If they are controls,
add them to the toolbox and it will automatically register the tags when you
drop them on the page.

One way to decide is to figure how often you use them. If on every page, you
might be best adding the namespace reference in web.config.

In code behind, you can alter the templates to include the library
reference, if this is something you do in every project. Then it really does
not matter.

Hope this helps!

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Subscribe to my blog
http://gregorybeamer.spaces.live.com/lists/feed.rss

or just read it:
http://gregorybeamer.spaces.live.com/

*************************************************
| Think outside the box!
|
*************************************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Web Deployment. FTP. 1
Include Assets in Library 1
LINQ in VS2008 2
Web Site Folder 1
Use class ... why is not available? 7
Web Control and CSS Class 2
MsBuild 7
Culture 1

Top