Click here to Skip to main content
15,888,610 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Accessing Ajax modal pop control from a page in iframe Pin
jkirkerx1-Apr-13 7:26
professionaljkirkerx1-Apr-13 7:26 
GeneralRe: Accessing Ajax modal pop control from a page in iframe Pin
nainakarri2-Apr-13 1:25
nainakarri2-Apr-13 1:25 
GeneralRe: Accessing Ajax modal pop control from a page in iframe Pin
jkirkerx2-Apr-13 6:25
professionaljkirkerx2-Apr-13 6:25 
GeneralRe: Accessing Ajax modal pop control from a page in iframe Pin
nainakarri31-Mar-13 19:19
nainakarri31-Mar-13 19:19 
QuestionAdding dll file in web application Pin
Shree.grace28-Mar-13 21:03
Shree.grace28-Mar-13 21:03 
QuestionRe: Adding dll file in web application Pin
Vasudevan Deepak Kumar29-Mar-13 4:28
Vasudevan Deepak Kumar29-Mar-13 4:28 
AnswerRe: Adding dll file in web application Pin
Shree.grace29-Mar-13 18:30
Shree.grace29-Mar-13 18:30 
AnswerRe: Adding dll file in web application Pin
Jasmine250129-Mar-13 6:50
Jasmine250129-Mar-13 6:50 
Right-click the bin folder of your web site in solution explorer, click "Add reference" - click the tab for browse, find your DLL, open it, done.

Alternatively, you can put the code for your class files in your App_Code directory, and it will be compiled as part of the web site. If the helper class is only for the one site, that is probably a better way to do it. If it's a shared data layer, then you're doing the right thing with a DLL as a separate project.

There is a third way to add it as well... add the project for the DLL to your web site solution - so you have two projects in the solution, the site, and the class library. Then, create a "project reference" using the above procedure to add a reference, but use the project tab instead of browsing to the DLL itself. The project output (DLL) will automatically be referenced by your site.

In your code, you may also need to add using statements that point to your namespace.
QuestionHandle frame close event Pin
obalesu28-Mar-13 20:50
obalesu28-Mar-13 20:50 
AnswerRe: Handle frame close event Pin
Vasudevan Deepak Kumar29-Mar-13 4:28
Vasudevan Deepak Kumar29-Mar-13 4:28 
GeneralMessage Removed Pin
31-Mar-13 19:54
obalesu31-Mar-13 19:54 
Questionfile uplode Pin
rvirat28-Mar-13 19:52
rvirat28-Mar-13 19:52 
AnswerRe: file uplode Pin
Sandeep Mewara28-Mar-13 20:04
mveSandeep Mewara28-Mar-13 20:04 
QuestionUsing Jquery in Update Panel IE Problem Pin
rbala00628-Mar-13 19:37
rbala00628-Mar-13 19:37 
AnswerRe: Using Jquery in Update Panel IE Problem Pin
Sandeep Mewara28-Mar-13 20:06
mveSandeep Mewara28-Mar-13 20:06 
AnswerRe: Using Jquery in Update Panel IE Problem Pin
jkirkerx29-Mar-13 10:30
professionaljkirkerx29-Mar-13 10:30 
Questionneed coding for my project Pin
rengaramu r28-Mar-13 8:43
rengaramu r28-Mar-13 8:43 
AnswerRe: need coding for my project Pin
Marco Bertschi28-Mar-13 9:06
protectorMarco Bertschi28-Mar-13 9:06 
GeneralRe: need coding for my project Pin
rengaramu r28-Mar-13 9:38
rengaramu r28-Mar-13 9:38 
GeneralRe: need coding for my project Pin
Jasmine250128-Mar-13 12:58
Jasmine250128-Mar-13 12:58 
GeneralRe: need coding for my project Pin
rengaramu r28-Mar-13 17:28
rengaramu r28-Mar-13 17:28 
GeneralRe: need coding for my project Pin
Jasmine250129-Mar-13 6:09
Jasmine250129-Mar-13 6:09 
AnswerRe: need coding for my project Pin
jkirkerx28-Mar-13 10:09
professionaljkirkerx28-Mar-13 10:09 
QuestionDataTable: Query a programmatically generated DataTable Pin
Sumit Kathuria28-Mar-13 8:16
Sumit Kathuria28-Mar-13 8:16 
AnswerRe: DataTable: Query a programmatically generated DataTable Pin
David Mujica28-Mar-13 8:49
David Mujica28-Mar-13 8:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.