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

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 > ASP.Net > Assembly
Search:
What's New - What's Hot


Data Driven Unit Testing for a DotNetNuke Private Assembly Module        
Total Hits: 47  |  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 ...

Microsoft Exception Management Application Blocks        
Total Hits: 62  |  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...

Managing Processes in .NET        
Total Hits: 56  |  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: 190  |  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...

Method for Securing the Accessible Files        
Total Hits: 22  |  Today: 0 Author: wankai       Rating:  
Read Reviews | Write Review |   Your Rating: 

I find there are so many solutions on the internet which can solve the security file downloading problems. But when I encounter this kind of things, I still feel some updates will help a lot. So I write this post down, hope it will help u guys! ^_^ Coz CodeProject really helps me a lot! Here, I just give a brief introduction, so hope u have already known sth about how IIS and ASP.NET works and .ashx!...

Unit Testing a DotNetNuke Private Assembly Module        
Total Hits: 24  |  Today: 0 Author: brucerchapman       Rating:  
Read Reviews | Write Review |   Your Rating: 

If you're like me, you've tried two separate things and found that you like them. The two things I am talking about are 1) building custom DotNetNuke modules, and b) using the Unit Testing framework in Microsoft Visual Studio 2005. However, like canned tuna and pineapple*, initially a lot of people might say that the two don't really go well together, but on further inspection will find that, with a bit of careful blending, they are indeed complimentary....

Creating an Assembly Programmatically        
Total Hits: 124  |  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: 799  |  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....

Simplifying .NET assembly libraries        
Total Hits: 603  |  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...

Dynamic building and execution of assembly using CodeDome & Reflection        
Total Hits: 44  |  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....

How to Use Shared Assembly in Global Access Cache (GAC)        
Total Hits: 49  |  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....

Data Driven Unit Testing for a DotNetNuke Private Assembly Module        
Total Hits: 34  |  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 ...

How to read satellite assemblies resources in ASP.NET        
Total Hits: 82  |  Today: 0 Author: Adrian Tosca       Rating:  
Read Reviews | Write Review |   Your Rating: 

This tutorial describes how to read text resources from satellite assemblies in ASP.NET applications. The method is not unique and other methods can be found. This particular one is based on Duwamish 7.0 sample application. Let's now start step by step....

Creating and Using Multifile Assemblies        
Total Hits: 30  |  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...

Assembly in .NET        
Total Hits: 105  |  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: 188  |  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: 70  |  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: 1327  |  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: 288  |  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....

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


1  2  3  Next >> 

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