I'm working on asp.net (web application). I have to use time picker control in my page. Hence i downloaded 'time picker.dll' file from some website. I need to integrate this 'dll' file into my project. can anyone pls guide me in the same?
3 Answers
Copy the "time picker.dll" into the Bin folder of your web-app and add <%@Register %> directive into your web-page to use that control.
2 Comments
bin folder is put as "ignored" in your VCS (SVN, GIT, ...). You normally copy it in the source file folder (or in a folder named ExternalDependancies, or something similar) and add a reference. The <%Register %> part is correctAssuming dll package the typical ASP.NET server control, you have to add reference to the dll (VS Studio Project -> References -> Right-Click & Add Reference, Browse the dll file).
Next thing to do is to add the control on tool box by right clicking on the toolbox and selecting the control. Now you can drag the control on the ASP.NET Design surface. Alternatively, you can use the object browser to check the control name and use the register directive.