When VB.NET first came out, I built a couple of websites. Uploaded the aspx pages and the bin folder and the site was up. Of course, all the "code behind" stuff was compiled into a dll that was stored in the bin folder. I am now on Visual Studio 2005. I have built a new site, uploaded the aspx pages, but there is no dll in the bin folder????? What did I miss? Where is the damn dll? Thanks in advance.
Hi, By default there is no dll file(s) in your asp.net project when you compare with vs 2003. If you have added some dll (third party) files int o your project it will be automatically added to bin folder of your web site. In 2003 VS automatically generated dll files for bin and debug folder. In your deployment step you do not need to have dll s.But keep in mind if you have used some third party control which are added to your proejct as dll s , so then you have to upload all of these dlls with your web project. Thanks -------------------------------
Hey Poojanath, Thanks for the response. I have uploaded a couple of dlls that I have referenced in the app. So again, I have aspx files and the bin folder. The aspx files are presentation layer only. How do I get my code behind stuff up to the server?