ASP.NET
| Author | Topic |
|---|---|
| alex joselin Member Joined: 11 Jul 2008 Homepage: link Country: Posts: 2 | This site is very useful to learn the master technologies like C# and ASP.NET. Then I hear given some additional site to utlize you time useful and learns a lot from that. I read dotnet about the following blogs that are This site is very useful to learn the master technologies like C# and ASP.NET. Then I hear given some additional site to utlize you time useful and learns a lot from that. I read dotnet about the following blogs that are alexjoselinmobiles.blogspot.com alexbelarmin.blogspot.com geocities.com/alex_joselinmobiles/software/web.htm 1)What is a CLS(Common Language Specification)? This is a subset of the CTS which all .NET languages are expected to support. It was always a dream of Microsoft to unite all different languages in to one umbrella and CLS is one step towards that. Microsoft has defined CLS which are nothing but guidelines that language to follow so that it can communicate with other .NET languages in a seamless manner. 2)What is a Managed Code? Managed code runs inside the environment of CLR i.e. .NET runtime. In short all IL are managed code. But if you are using some third party software example VB6 or VC++ component they are unmanaged code as .NET runtime (CLR) does not have control over the source code execution of the language. 3)What is a Assembly? · Assembly is unit of deployment like EXE or a DLL. · An assembly consists of one or more files (dlls, exe’s, html files etc.), and represents a group of resources, type definitions, and implementations of those types. An assembly may also contain references to other assemblies. These resources, types and references are described in a block of data called a manifest. The manifest is part of the assembly, thus making the assembly self-describing. · An assembly is completely self-describing.An assembly contains metadata information, which is used by the CLR for everything from type checking and security to actually invoking the components methods. As all information is in the assembly itself, it is independent of registry. This is the basic advantage as compared to COM where the version was stored in registry. · Multiple versions can be deployed side by side in different folders. These different versions can execute at the same time without interfering with each other. Assemblies can be private or shared. For private assembly deployment, the assembly is copied to the same directory as the client program that references it. No registration is needed, and no fancy installation program is required.70 When the component is removed, no registry cleanup is needed, and no uninstall program is required. Just delete it from the hard drive. · In shared assembly deployment, an assembly is installed in the Global Assembly Cache (or GAC). The GAC contains shared assemblies that are globally accessible to all .NET applications on the machine. |
Posted: 11 Jul 2008 17:19:55










