What are the types of assemblies and where can u store them
and how a private assembly is used only by a single
application, and is stored in that application's install
directory (or a subdirectory therein)?
Answer Posted / srikanth
Assemblies are of three types.
1. Private-The assembly that resides in the application
directory and is only meant for that particular application.
2. Public/Shared-The assembly that is placed in the Global
Assembly Cache where all the application can use the
functionality of the assembly.
3. Satellite-An assembly that behaves differently for each
application based on the culture information.
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
What is server side session?
What is asp.net futures?
How many types of Cookies are available in ASP.NET?
Describe the difference between inline and code behind - which is best in?
a web application needs to be created to accept the product name and quantity of a toy from a customer. After the customer has entered the product name the application needs to display the discounted price of the product to the customer (company is offering 35% discount on all products). The application should allow the customer to select the product name from a list box. and also while i'm data binding to a label with custom data binding with some declarations : "The Discounted Price is "+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)) - ((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)). Where i need to give this declaration in asp.net 2.0.
What is advantage of asp.net?
What are the versions of garbage collection?
What are HTTP handlers in ASP.NET?
Will the asp.net validators run in server side or client side? How do you do client-side validation in .net?
How about the security in Activex DLL and Activex EXE ?
How will you load dynamic assembly?
Which adapter should you use, if you want to get the data from an access database?
How do I open an ashx file?
What are the advantages of using Master Pages?
Define session in asp.net.