how to add reference to dll in asp project
-
how to add reference to dll in asp project?i download website from ftp accoutn which doesnot conatains the neackend files no solution no projects files so i decompiled the dll to get teh backend files now i made changes in backend files n when i m runninf it shows dll is missing ,dere is no solution no project file how can i compile the pages............its showing error dll Error 91 The type or namespace name 'Button' could not be found (are you missing a using directive or an assembly reference?) Plz help
-
how to add reference to dll in asp project?i download website from ftp accoutn which doesnot conatains the neackend files no solution no projects files so i decompiled the dll to get teh backend files now i made changes in backend files n when i m runninf it shows dll is missing ,dere is no solution no project file how can i compile the pages............its showing error dll Error 91 The type or namespace name 'Button' could not be found (are you missing a using directive or an assembly reference?) Plz help
Member 9066025 wrote:
The type or namespace name 'Button' could not be found (are you missing a using directive or an assembly reference?)
You have a reference to an object in your code that is not known by the compiler. Add the correct
using
clause to your source module, probably this one[^], although without seeing your source that is a pure guess.One of these days I'm going to think of a really clever signature.
-
Member 9066025 wrote:
The type or namespace name 'Button' could not be found (are you missing a using directive or an assembly reference?)
You have a reference to an object in your code that is not known by the compiler. Add the correct
using
clause to your source module, probably this one[^], although without seeing your source that is a pure guess.One of these days I'm going to think of a really clever signature.
i didnt not understand ur solution can u explain how to do that
-
i didnt not understand ur solution can u explain how to do that
What more is there to say; make sure the project references include the classes you are trying to use, and make sure your source code includes the correct
using
statements for those classes or namespaces. If this does not make sense to you then I suggest you consult the documentation[^] on this and other basics of C#.One of these days I'm going to think of a really clever signature.
-
how to add reference to dll in asp project?i download website from ftp accoutn which doesnot conatains the neackend files no solution no projects files so i decompiled the dll to get teh backend files now i made changes in backend files n when i m runninf it shows dll is missing ,dere is no solution no project file how can i compile the pages............its showing error dll Error 91 The type or namespace name 'Button' could not be found (are you missing a using directive or an assembly reference?) Plz help