How do you register a .NET assembly?
Answers were Sorted based on User's Feedback
Answer / lavanya
first step is to create a strong name for your assembly by
using the sdk tool named sn and then using the regasm tool
to register the meta data into the registry.
Syntax:
To create a key pair
sn –k myKey.snk
To sign the assembly with a strong name using attributes
[assembly: AssemblyKeyFileAttribute(@"..\..\key.snk")]
To sign the assembly with a strong name using assembly
linker
al /out:MyAssembly.dll MyModule.netmodule /keyfile:myKey.snk
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / saiish bhat
To register an assembly : Regsvr32
Also you can use GacUtil.exe tool
Is This Answer Correct ? | 1 Yes | 0 No |
What is the use of sessionstate tag in the web.config file?
Explain the use of resource manager class in .net.
How do you open a page in a new window?
How do you initiate validation on the server manually? What are two situations when you might you want to do that?
What three Session State providers are available in ASP.NET 1.1? What are the pros and cons of each ?
What is the application pool?
What is the difference between Postback and Ispostback Property?
7 Answers Atrocity Apps Technologies, DC Infotech, HCL, Maples, Visual Soft,
How many webforms are possible on a single webpage?
What is the difference between page-level caching and fragment caching?
How Session use Cookies in State Management?
Where do the cookie state and session state information be stored?
Suppose i create one application in vs 2008 and it is running in the latest version of IE,will it run in netscape and other browsers with low version?