ASP.Net – Simple webpage
ASP.Net is a web framework for building web sites. ASP.Net has been designed to be fully integrated with the .Net framework. ASP.Net works with Internet...
.Net – Assemblies – Create a Publisher Policy
As of now, we have created a hello shared assembly and installed it into GAC. We also created a new version of hello assembly and...
.Net – Assemblies – Create a configuration file
In our previous article, we have created a new version 1.0.0.0 to our hello assembly. The old version of hello assembly is already existed in Global...
.Net – Assemblies – Add a method
As of now we have created hello assembly and testapp application. testapp application will call the function SayHello (it just prints “Hello, World!” on the...
.Net – Assemblies – gacutil
We have created hello.exe assembly in our previous article and installed it into Global Assembly Cache (GAC). Lets look at where in GAC this assembly...
.Net – Assemblies – How to Reference Assemblies?
We have created one simple private assembly hello.exe in our previous article. In this article, we will look at how to reference Assemblies into our...
.Net – Assemblies – An Introduction
Assemblies are the self-describing building blocks of .Net based applications. Assemblies contain Assembly manifest, which contains metadata information, contains a collection of data that describes the relationship...