Want to hire a development team?
Search Filter
Search Filter
Sort Listings By
Show Only
By Customer Review
Licence Type

Tutorials & Tips

Results 321-340 of 654
What the Metadata stores?
Metadata stores the following information: Description of the assembly. Description of types. Attributes.
(0 ratings)
Reviews0
PriceFree
Views813
What is Windows CardSpace (WCS, formerly �InfoCard�)?
What is Windows CardSpace (WCS, formerly �InfoCard�)? Windows CardSpace is a Microsoft .NET Framework version 3.0 (formerly WinFX) component that provides the consistent user experience required by the identity metasystem. It is specifically hardened against tampering and spoofing to protect the end user's digital identities and maintain end-user control.
(0 ratings)
Reviews0
PriceFree
Views611
What is Windows Workflow Foundation (WF)?
Windows Workflow Foundation is the programming model, engine and tools for quickly building workflow enabled applications on Windows. It consists of a .NET Framework version 3.0 (formerly WinFX) namespace, an in-process workflow engine, and designers for Visual Studio 2005. Windows Workflow Foundation is available for both client and server versions of Windows.
(3 ratings)
Reviews0
PriceFree
Views998
What is Windows Communication Foundation (WCF)?
What is Windows Communication Foundation (WCF)? Windows Communication Foundation (formerly code-named "Indigo") is a set of .NET technologies for building and running connected systems. It is a new breed of communications infrastructure built around the Web services architecture. Advanced Web services support in Windows Communication Foundation provides secure, reliable, and transacted messaging along with interoperability.
(0 ratings)
Reviews0
PriceFree
Views734
What is Windows Presentation Foundation (WPF)
The Microsoft Windows Presentation Foundation provides the foundation for building applications and high fidelity experiences in Windows Vista, blending together application UI, documents, and media content, while exploiting the full power of your computer.
(0 ratings)
Reviews0
PriceFree
Views936
What is the Microsoft .NET Framework 3.0?
What is the Microsoft .NET Framework 3.0? The Microsoft .NET Framework 3.0 (formerly known WinFX), is the new managed code programming model for Windows. .NET Framework 3.0 is combines the power of the .NET Framework 2.0 with four new technologies
(0 ratings)
Reviews0
PriceFree
Views1150
How many types of the JIT (just-in-time) compiler?
There are three types JIT (just-in-time) compiler. Those are as follows� * Pre-JIT compiler (Compiles entire code into native code completely) * Econo JIT compiler (Compiles code part by part freeing when required) * Normal JIT compiler (Compiles only that part of code when called and places in cache)
(15 ratings)
Reviews0
PriceFree
Views1208
What is JIT
JIT (just-in-time) is a CLR�s (Common Language Runtime) compiler. The JIT Compiler function is responsible for compiling a method�s IL code into native CPU instructions. Because the IL(intermediate language) is being compiled "just in time," this component of the CLR is frequently referred to as a JITter or a JIT compiler.
(3 ratings)
Reviews0
PriceFree
Views776
Which Languages supported by .NET Framework?
.NET Framework supports all major programming languages. Some of them are as below� * ASP * ASP.NET * APL * C++ * C# * COBOL * Component Pascal and more
(0 ratings)
Reviews0
PriceFree
Views1066
What is Common Language Runtime(CLR)
The CLR is the layer of the .NET Framework that makes language independence work. Written mostly in Microsoft's new language, C#, the CLR provides services that any .NET program can use. Because of .NET's component architecture, software written in any language can call upon these services. Microsoft has also submitted a subset of the CLR to ECMA, the European information and communications standards organization. This subset is referred to as the Common Language Infrastructure (CLI). CLR provides following services:
(4 ratings)
Reviews1
PriceFree
Views1180
What is .NET Framework
What is .NET Framework? The .NET Framework Includes the Common Language Runtime (CLR) and the .NET Framework class library. The CLR is a standard foundation for building a range of new applications, while the .NET Framework class library provides standard implementations of many new services for CLR-based applications. Among the technologies in the library are ASP.NET, which is the next generation of Active Server Pages;
(12 ratings)
Reviews0
PriceFree
Views890
Which are the main components of the .NET platform
Which are the main components of the .NET platform? The Microsoft .NET platform consists of the following product groups/ main components... Development tools A set of languages, including C#, VB.NET, J#, a set of development tools, including Visual Studio.NET (a suite of language-independent developer tools, a set of programming interfaces), .NET Framework (for building web and Windows applications, as well as web services), and Common Language Runtime, which is the execution engine for .NET Framework applications
(3 ratings)
Reviews0
PriceFree
Views781
What is .NET Platform
What is .NET Platform? Microsoft .NET platform defines a standard around which a system can be developed. Microsoft .NET platform provides countless opportunities for different services and systems to interact, allowing programmers to develop powerful solutions for the internet. A major theme of Microsoft .NET platform is the idea of Web services, allowing software to communicate directly with other software using Internet technologies. The .NET Framework and Visual Studio.NET, two more core aspects of this initiative, provide a multi-language environment in which developers can create Web services and other kinds of applications.
(3 ratings)
Reviews0
PriceFree
Views862
Design Patterns In VB.NET School
Using design patterns can lead to better designed and implemented object oriented programs. They can also help make code more understandable. The Programmer's Heaven design patterns school covers each design pattern, complete with explanations and code examples in VB.NET. It also looks at the approach taken by the creators of design patters and the motivation for using them in your own development.
(0 ratings)
Reviews0
PriceFree
Views975
Build a Poll System in ASP.NET
There are many websites that have polls on their front page where users (anonymous and members) give their opinions. In this article, we will look at how to design a polling system, having a back-end to insert new polls along with their answers as well as how to process and store the votes of the users.
(24 ratings)
Reviews0
PriceFree
Views2155
Building a Shopping List
I am sure that most of us before going for shopping on a certain occasion, we have to dig up our mind to draft a shopping list. This tutorial will explain how to build a shopping list using ASP.NET 2.0 with MS SQL database. Based on this article, some cool technical stuff in Visual Web Developer will be used to facilitate our work.
(0 ratings)
Reviews0
PriceFree
Views1438
Make bar and pie charts in ASP.NET
Graphs and charts are important tools for the analysis of data. In this tutorial, we will look at how to represent data in terms of a bar chart and pie chart. To make this possible, the latest rendition of Microsoft's Graphics Device Interface (GDI+) was brought on the market.
(9 ratings)
Reviews0
PriceFree
Views1782
Introduction to Microsoft Visual Studio Express Editions
Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products is an expansion of the Microsoft Visual Studio and SQL Server products. It is a lightweight, yet powerful, easy to use and learn tools for beginners, students, and hobbyist users.
(0 ratings)
Reviews0
PriceFree
Views818
Use Asynchronous Execution Pattern in ASP.NET
Asynchronous operations or execution pattern is another face of multithreading. Some operations are time consuming, take long time to complete, and block user interface waiting for their completion. This tutorial explains how to to create asynchronous pages for long time consuming operations.
(0 ratings)
Reviews0
PriceFree
Views956
Built-In Asynchronous I/O Support in ASP.NET
As we all know, I/O operations is one of the most time consuming operations. In the same time, IO is one of the most needed operations almost in all applications. To make our applications faster and having more responsive user interface, we need to perform those I/O operations asynchronously. This tutorial explains how to make faster and more responsive user interface through asynchronous I/O operations in ASP.NET 2.0 Web application.
(0 ratings)
Reviews0
PriceFree
Views867
Results 321-340 of 654