Steps to add assemblies to the Global Assembly Cache - C#.NET

Explain the steps to add assemblies to the Global Assembly Cache.

a. sn -k StrongNameFile.snk – creates a strong key
b. [assembly:AssemblyKeyFile("StrongNameFile.snk")] – tag the assembly wid he string key.
c. gacutil /i AssemblyName.dll – install the assembly to GAC.
Steps in using XCOPY to deploy a web application - C#.NET
Steps in using XCOPY to deploy a web application...
Methods of windows-based authentication - C#.NET
Explain the methods of windows-based authentication - Anonymous authentication gives access to read-only areas of the Web site which do not need any username and password. ...
How to create windows forms using visual inheritance - C#.NET
Explain how to create windows forms using visual inheritance - Create a windows form called the basewindow...
Post your comment