Search - Articles - Dev Forums - Favorites - Member Login  
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Friday, September 03, 2010

Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

Build the right apps the right way with powerful development tools.
Visual Studio 2010. Learn more...

Home > Search > Articles & Samples > ASP.Net > Assembly
Search:
What's New - What's Hot


Data Driven Unit Testing for a DotNetNuke Private Assembly Module        
Total Hits: 155  |  Today: 0 Author: brucerchapman.       Rating:  
Read Reviews | Write Review |   Your Rating: 

My previous article covered how to create a Unit Test for a DotNetNuke Private Assembly Module. This is an extension to that article, and covers hooking up Data Driven unit testing. Data Driven unit testing involves using an External Data Source to feed test data into your Unit Tests, so that many different data values and combinations can be run through a single piece of unit test code.

Data Driven unit tests are far superior in that they can provide much better test coverage than 'hard ...

Managing Processes in .NET        
Total Hits: 157  |  Today: 0 Author: Leonardo Esposito       Rating:  
Read Reviews | Write Review |   Your Rating: 

The Process class allows you to gain full control over system processes.You can start and stop processes and retrieve information about running processes such as the list of loaded modules and the characteristics of the memory occupied. The class also features handy methods to know whether a process is responding or has just exited and with which return code. Programmers also have full control over the style of the window the process runs in. After an overview of the capabilities of the Process ...

DotNetNuke Module Packager        
Total Hits: 348  |  Today: 0 Author: perlmunger       Rating:  
Read Reviews | Write Review |   Your Rating: 

You are probably reading this because you have created a DotNetNuke module and want to deploy it as a private assembly without doing all of the work of creating a package by hand. Therefore, you probably are keenly aware of what DotNetNuke is, so I won't go into any detail about it except to say that it is a great platform upon which to build powerful web applications. For those who are here for any other reason, you can learn more about it at the DotNetNuke web site.I built the DNN Module Packa...

Dynamic building and execution of assembly using CodeDome & Reflection        
Total Hits: 184  |  Today: 0 Author: Pradeep Tiwari       Rating:  
Read Reviews | Write Review |   Your Rating: 

We have an assembly running, now at run time we want to enter some code, compile it, execute it and apart from that access code and data member from the main or other referenced assembly....

Creating an Assembly Programmatically        
Total Hits: 318  |  Today: 0 Author: Uday Denduluri       Rating:  
Read Reviews | Write Review |   Your Rating: 

An assembly is a basic building block for any application in the .NET Framework. It is a fundamental unit of deployment, version control, reuse, activation scoping, and security permissions. An assembly is a collection of types and resources that are built to work together and form a logical unit of functionality. An assembly provides the Common Language Runtime (CLR) with the information it needs to be aware of type implementations. During runtime, a type does not exist outside the context of a...

Introduction to .NET Reflection        
Total Hits: 854  |  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 Use Shared Assembly in Global Access Cache (GAC)        
Total Hits: 290  |  Today: 0 Author: Pradeep Mogha       Rating:  
Read Reviews | Write Review |   Your Rating: 

This Aritical is based on Shard Assembly. Shard Assembly is used When You want to use multiple version of Assembly in diffrenct Project....

Creating and Using Multifile Assemblies        
Total Hits: 102  |  Today: 0 Author: J. Ambrose Little       Rating:  
Read Reviews | Write Review |   Your Rating: 

You've heard about them, but have you used them? This article will tell you how and when to use multifile assemblies.

One of the lesser-talked-about features of .NET is what is commonly referred to as a "multifile assembly." They are often mentioned briefly in passing in articles and books, but few rarely actually demonstrate how to create them and even fewer discuss using them. In this article, we will do both. First, we'll examine some reasons that you might want to use multifile ass...

Microsoft Exception Management Application Blocks        
Total Hits: 157  |  Today: 0 Author: Paul Sheriff       Rating:  
Read Reviews | Write Review |   Your Rating: 

Microsoft created a generic exception handling class that you can use in any Catch block in addition to any regular error handling code that you might perform. The code in Listing 1 provides you an example of how to use the Exception Management Application Block EAAB.
The Publish method is a shared method of the ExceptionManager class. You pass to it the Exception object that you created in your Catch statement. By default the Publish method will call a routine that Microsoft has already writ...

How Many Threads Do You Need?        
Total Hits: 174  |  Today: 0 Author: Markus Egger       Rating:  
Read Reviews | Write Review |   Your Rating: 

Multithreading is important. But is it important for you and your applications? Often when I discuss this issue with fellow developers, the answer seems to be driven more by their background and less by their need. Developers with a C or C++ background, for instance, seem more likely to use threading extensively, while developers who come from languages such as Visual Basic 6 or Visual FoxPro tend to dismiss threading as a technique that their business applications don’t need....

Assembly in .NET        
Total Hits: 304  |  Today: 0 Author: Thiru Balaje       Rating:  
Read Reviews | Write Review |   Your Rating: 

The .NET assembly is the standard for components developed with the Microsoft.NET. Dot NET assemblies may or may not be executable, i.e., they might exist as the executable (.exe) file or dynamic link library (DLL) file. All the .NET assemblies contain the definition of types, versioning information for the type, meta-data, and manifest. The designers of .NET have worked a lot on the component (assembly) resolution....

Installing an Assembly in GAC        
Total Hits: 293  |  Today: 0 Author: Haroon Malik       Rating:  
Read Reviews | Write Review |   Your Rating: 

To share assemblies within an ASP.NET web application they are required to be placed within the \bin directory, but in order to share them through different applications existing on the same web server it is required to install them into the Global Assembly Cache (GAC). This article will provide guidance to you in the process of adding an assembly to the GAC....

Cobol for Microsoft.NET Framework        
Total Hits: 120  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article discusses some of the important applications of this technology for COBOL and what it takes for a programming language vendor, such as Fujitsu Software, to deliver on the new vision....

Introduction to .NET assemblies        
Total Hits: 1396  |  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...

Introduction to attributes        
Total Hits: 318  |  Today: 0 Author: Bipin Joshi       Rating:  
Read Reviews | Write Review |   Your Rating: 

In .NET assemblies information about each assembly is stored in the assembly itself. This information is called as Metadata. .NET allows you to put your own information in the metadata. The way to accomplish this is through Attributes. In this article we will see how to create your own attributes and use them in your code....

Simplifying .NET assembly libraries        
Total Hits: 664  |  Today: 0 Author: Stephen Fraser       Rating:  
Read Reviews | Write Review |   Your Rating: 

Microsoft .NET’s Managed C++ has finally simplified the way we construct libraries, or more accurately, .NET assembly libraries. This simplification is due mainly to the fact that assembly libraries are self-describing...

No ActiveX Server Registration        
Total Hits: 314  |  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!...

Writing Assemblies        
Total Hits: 593  |  Today: 0 Author: Ellery Familia       Rating:  
Read Reviews | Write Review |   Your Rating: 

We can code assemblies that make up projects using different languages. Something that we might not be so aware of is, coding one assembly using more than one language....

Introduction to .NET Assemblies        
Total Hits: 1862  |  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.....

Installing an Assembly in GAC        
Total Hits: 63  |  Today: 0 Author: Haroon Malik       Rating:  
Read Reviews | Write Review |   Your Rating: 

To share assemblies within an ASP.NET web application they are required to be placed within the \bin directory, but in order to share them through different applications existing on the same web server it is required to install them into the Global Assembly Cache (GAC). This article will provide guidance to you in the process of adding an assembly to the GAC....


1  2  3  4  Next >> 

DevASP.Net - Disclaimer - Privacy
© 2002-2010 DevASP.net