|
|
|
|
|
| | Total Hits: 2 | Today: 0 | Author: Thang Q. Tran | Rating:  |
| |  As a professional developer, your clients might ask you to develop a website in which users can choose the language they want the site to be in. Somehow, this scenario can be done by developing several pages with several languages. Finally, you can satisfy the clients' requirements. However, it takes you a very long time, and it also wastes your money. There is a faster way to accomplish the requirement. Let's enjoy!... |
| | Total Hits: 2 | Today: 0 | Author: Bipin Joshi | Rating:  |
| |  "I developed a web site few months back using ASP.NET, ADO.NET and MS-Access database. The application was small one and Access is what the client wanted. Naturally I used OleDB data provider to develop a Data Access Layer (DAL). The DAL was also used by few more applications. The client hosted the DAL in Global Assembly Cache (GAC) as it was being shared across many applications. So far so good. Recently they migrated from Access to SQL Server and requested me to provide new version of DAL now ... |
| | Total Hits: 2 | Today: 0 | Author: Thiru Balaje | 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.... |
| | Total Hits: 29 | Today: 0 | Author: Sameers (theAngrycodeR) | Rating:  |
| |  This article teaches the basics of IL Assembly language which can be used to debug your .NET code (written in any .NET high level language) at low level. From low level, I meant the point where the compiler of your high level language has finished his work. Also, using these basics, you can plan to write your own compiler f... |
| | Total Hits: 52 | Today: 0 | Author: Bean Software | Rating:  |
| |  An assembly is a single deployable unit that contains all the information about the implementation of classes, structures and interfaces. An assembly stores all the information about itself. This information is called metadata and includes the name and version number of the assembly, security information, information about the dependencies, and a list of the files that constitute the assembly. It is the assembly manifest. All the applications developed using the .NET Framework are also made up o... |
| | Total Hits: 325 | Today: 0 | Author: Pradeep Mogha | Rating:  |
| |  This Aritical is based on Shard Assembly. Shard Assembly is used When You want to use multiple version of Assembly in diffrenct Project.... |
| | Total Hits: 174 | Today: 0 | Author: brucerchapman. | 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 ... |
| | Total Hits: 173 | Today: 0 | Author: Leonardo Esposito | 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 ... |
| | Total Hits: 309 | Today: 0 | Author: Haroon Malik | 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.... |
| | Total Hits: 365 | Today: 0 | Author: perlmunger | 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... |
| | Total Hits: 1415 | Today: 0 | | 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... |
| | Total Hits: 873 | Today: 0 | | 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.... |
| | Total Hits: 331 | Today: 0 | Author: Bipin Joshi | 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.... |
| | Total Hits: 678 | Today: 0 | Author: Stephen Fraser | 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... |
| | Total Hits: 609 | Today: 0 | Author: Ellery Familia | 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.... |
| | Total Hits: 1879 | Today: 0 | | 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..... |
| | Total Hits: 2 | Today: 0 | Author: Todd Davis | Rating:  |
| |  DotNetNuke (DNN) is a portal application written in ASP.NET - completely open-source, free, and intelligently designed. Due to its modular design, skinning capability, third party support and open code, it is in use in thousands of web sites. If you haven't had a chance to check it out, I encourage you to do so.... |
| | Total Hits: 2 | Today: 0 | Author: Adrian Tosca | 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... |
| | Total Hits: 3 | Today: 0 | Author: Satish Arveti | Rating:  |
| |  Everyone knows about Assembly. But, very few knows about ILDASM tool, which is present in .NET Framework. ILDASM is nothing but Intermediate Language Disassembler. It is used to exploit any .NET dll or exe. By using this tool, we can see manifest,resources.....This tool is available in C:\WINNT\Microsoft.NET\Framework\v1.1.4322\. We can access this from VS.NET 2003 Command Prompt(present in VS Tools). Just drag any exe or dll onto that tool, to view its attributes. But, that tool won't show any ... |
| | Total Hits: 2 | Today: 0 | Author: Bechir Bejaoui | Rating:  |
| |  It is an assembly container provided by the .NET Framework especially to store assemblies shared and used by different .Net applications installed on a given computer or on a given network. It is located in a subdirectory of the root system but it can not be directly accessed except that administrator permission is given before. The GAC is accessed via the .NET configuration management console witch is represented bellow:... |
|
|
|
|
|
|
|
|
|
|
|
|
|