Search   Articles   Dev Forums   Personalize   Favorites   Member Login   ASP.Net Hosting
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Sunday, November 23, 2008

Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 
FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Articles & Samples > .NET Framework > Assembly
Search:
What's New - What's Hot


Introduction to .NET Reflection        
Total Hits: 803  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

Reflection is ability to find information about types contained in an assembly at run time.In this article we will examine the basic and most commonly used features of reflection....

HOW TO: Create an Assembly with a Strong Name        
Total Hits: 648  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

Assemblies can be assigned a cryptographic signature called a strong name, which provides name uniqueness for the assembly and prevents someone from taking over the name of your assembly (name spoofing). If you are deploying an assembly that will be shared among many applications on the same computer, it must have a strong name. This document describes how to create an assembly with a strong name....

DOC: Global Assembly Cache (GAC) APIs Are Not Documented in the .NET Framework Software Development Kit (SDK) Documentation        
Total Hits: 222  |  Today: 0 Author: MSDN       Rating:  
Read Reviews | Write Review |   Your Rating: 

The native code application programming interfaces (APIs) that allow you to interact with the Global Assembly Cache (GAC) are not documented in the .NET Framework Software Development Kit (SDK) documentation....

Introduction to .NET assemblies        
Total Hits: 1336  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

This articles introduces to .NET assemblies. It explains many aspects of assemblies in a very simple form. It also illustrates with example how to create simple assemblies and host them in Global Assembly Cache...

No ActiveX Server Registration        
Total Hits: 271  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

Need to create a wrapper for ActiveX and use it in ASP.NET? The advantage is these wrappers don't require registration of ActiveX on server. Just copy it, allowing for easy deployment on remote servers. Even run ActiveX on shared hosting!...

What Is An Assembly?        
Total Hits: 249  |  Today: 0 Author: Donny Mack       Rating:  
Read Reviews | Write Review |   Your Rating: 

An assembly is the primary building block of .NET. It's a reusable, self-describing, versionable deployment unit for types and resources. They are self-describing so to allow the .NET runtime to fully understand the application and enforce dependency and versioning rules....

Creating a .NET assembly in C#        
Total Hits: 2905  |  Today: 1       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this article, Dinar Dalvi looks at assemblies in detail. He guides us as we learn about writing assemblies, signing them, adding them to the global cache, and how to write applications that use these assemblies. Along the way, he goes into detail about every aspect of assemblies....

Introduction to .NET Assemblies        
Total Hits: 1817  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

You must have heard the word assembly many times in .NET documentation. In this article I will share some thing about .NET assemblies. An Assembly is a logical unit of code. Assembly physically exist as DLLs or EXEs. One assembly can contain one or more files. The constituent files can include any file types like image files, text files etc. along with DLLs or EXEs. When you compile your source code by default the exe/dll generated is actually an assembly. Unless your code is bundled as as.....

Simplifying Deployment and Solving DLL Hell with the .NET Framework        
Total Hits: 421  |  Today: 0 Author: Steven Pratschner       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article introduces the concept of an assembly and describes how the .NET Framework uses assemblies to solve versioning and deployment problems....

Namespaces, using Keyword and Referencing Assemblies        
Total Hits: 455  |  Today: 0 Author: Saurabh Nandu       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this article Saurabh Nandu explains what are Namespaces and why they should be used. Later I will explain the use of the using keyword and the need for referencing assemblies while compiling.
...

Assemblies: The Ins and Outs - Part 2        
Total Hits: 921  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article is the second part of a three part series of articles covering the .Net assemblies. In Part 1, I coved what exactly an assembly is, and what an assembly contains. In this article, Part 2 of the series I will discuss both Private and Shared assemblies and how to create a "Shared Assembly". It is assumed that you are already familiar with creating apps or dll files. I will briefly mention some of the utilities available for working with assemblies. Part 3 will discuss in more detail t...

Installing a .NET assembly into the Global Assembly Cache (GAC)        
Total Hits: 1214  |  Today: 1       Rating:  
Read Reviews | Write Review |   Your Rating: 

In order to share a .NET assembly with multiple applications installed on the same machine, it needs to be installed into the Global Assembly Cache (GAC). This article will walk you through the process of giving your assembly a strong name, and installing it into the GAC....

The .NET Assemblies : Part-III        
Total Hits: 210  |  Today: 0 Author: Haroon Malik       Rating:  
Read Reviews | Write Review |   Your Rating: 

Final part of three series article. In this part a practical approach to creating a .NET assembly has been shown....

The .NET Assemblies : Part-II        
Total Hits: 173  |  Today: 0 Author: Haroon Malik       Rating:  
Read Reviews | Write Review |   Your Rating: 

Part 2 of a three seriesed article. This part is an introduction to the .NET Assemblies....

HOW TO: Create an Assembly with a Strong Name in .NET Framework SDK (Q302340)        
Total Hits: 604  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

Assemblies can be assigned a cryptographic signature called a strong name, which provides name uniqueness for the assembly and prevents someone from taking over the name of your assembly (name spoofing). If you are deploying an assembly that will be shared among many applications on the same computer, it must have a strong name. This document describes how to create an assembly with a strong name....

HOW TO: Register an Assembly in a WebForm to Use a Custom Control (Q321749)        
Total Hits: 818  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article provides step-by-step instructions to make and to register an assembly to be available in a WebForm to use with ASP.NET custom server controls....

Demystifying the .NET Global Assembly Cache        
Total Hits: 12  |  Today: 0 Author: Jeremiah Talkar       Rating:  
Read Reviews | Write Review |   Your Rating: 

My first introduction to the .NET Global Assembly Cache (henceforth referred to only as the GAC) was during a Guerrilla .NET Course conducted by Develop Mentor a week after the .NET Framework Beta 1 Release. I was immediately fascinated by this magical and mysterious piece within the entire .NET puzzle (yes, .NET had been a puzzle to me for a very long time). While ordinary (Private) assemblies cohabit peacefully within their master’s (client executable’s) folder or sub-folders thereof, the high...

A .NET assembly viewer        
Total Hits: 10  |  Today: 0 Author: Ben Peterson       Rating:  
Read Reviews | Write Review |   Your Rating: 

Asmex is a viewer for the internals of .NET assembly files. While the world is not particularly short of .NET assembly viewers, Asmex has some unique features and the source might prove useful in various contexts. Asmex's features include:
* Extract resources from assemblies
* View raw metadata tables
* Open assemblies as files or as Global Assembly Cache entries
* View disassembly (by cheating and spawning ILDASM)
* View PE file structures
* Browse type...

Accessible Images, Image Format Converter, and More        
Total Hits: 10  |  Today: 0 Author: Nancy Michell       Rating:  
Read Reviews | Write Review |   Your Rating: 

I've heard warnings about the use of graphics on a Web site when you want good accessibility. What should I look out for? Sometimes a Web site will rely on a nice looking graphic that suggests the type of navigation it will provide. But for the visually impaired user, there needs to be much more than a simple graphic that you hope the user will click on based on visual cues. Screen readers get the text to read from an IMG tag's alt attribute, so make sure to include it. Some designers are focuse...

Determining .NET Assembly and Method References        
Total Hits: 3  |  Today: 0 Author: James McCaffrey       Rating:  
Read Reviews | Write Review |   Your Rating: 

Before you can test any software system effectively, you must understand the system under test. If the system includes the Microsoft® .NET Framework, understanding the system under test includes understanding its assembly and method dependencies. This is not particularly enjoyable or challenging from a conceptual point of view, but it is absolutely indispensable. Many tools are available to uncover .NET assembly and method dependencies, but the majority are GUI-based and not particularly automat...


1  2  3  4  Next >> 


DevASP.Net - Disclaimer - Privacy
Copyright © 2008 DevASP.net