Search   Articles   Dev Forums   Personalize   Favorites   Member Login   ASP.Net Hosting
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Friday, May 09, 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 > Introduction
Search:
What's New - What's Hot
Listings for .NET Framework .NET Framework (27)
Listings for ADO.Net ADO.Net (12)
Listings for ASP Classic ASP Classic (0)
Listings for ASP.Net ASP.Net (107)
Listings for ASP.NET 2.0 ASP.NET 2.0 (10)
Listings for C# C# (46)
Listings for Miscellaneous Miscellaneous (38)
Listings for SOAP Toolkit SOAP Toolkit (2)
Listings for SQL Server SQL Server (20)
Listings for Visual Basic.Net Visual Basic.Net (22)
Listings for Visual Studio.Net Visual Studio.Net (17)
Listings for Web Services Web Services (12)
Listings for XML XML (4)
Listings for XML AND .Net XML AND .Net (8)

Introduction to 3-Tier Architecture        
Total Hits: 1  |  Today: 1 Author: Brian Mains       Rating:  
Read Reviews | Write Review |              Your Rating: 

As a developer, the .NET framework and Visual Studio present many choices for choosing the right architecture, from placing the data access code directly in the UI through datasets and data source controls, to creating a data access layer that talks to the database, all the way to creating an n-tier architecture approach that consists of multiple layers, and use data-transfer objects to pass data back and forth. If you’ve ever wondered why you should use layers and what the benefits are, this ar...

Introducing to Help System in .NET        
Total Hits: 2  |  Today: 0 Author: Bean Software       Rating:  
Read Reviews | Write Review |              Your Rating: 

While using an application, a user might need help on performing an operation or require information about a button or a dialog box. To assist the user while using the application, it is a good practice to provide help system with the application. In this article, we will discuss the creation of a help system using HTML help workshop. We will also discuss the creation of Context-Sensitive help, pop-up help and tool tips....

Introduction to Anthem.NET        
Total Hits: 2  |  Today: 0 Author: Howard Richards       Rating:  
Read Reviews | Write Review |              Your Rating: 

AJAX is something lots of ASP.NET developers are interested in, but there are a number of AJAX libraries and solutions out there - so which one do you go for? When looking myself, the criteria I used were:
* support ASP.NET 2.0 as that's what I'm using,
* soak as seamlessly as possible with VS2005, ideally without having to hand-code client-side JavaScript, and
* support ASP.NET functionality as closely as possible.
Having looked at the various AJAX libraries out there (...

What is .Net and Where is ASP.NET?        
Total Hits: 4  |  Today: 1 Author: Lakshmi Moningi       Rating:  
Read Reviews | Write Review |              Your Rating: 

This article is desiged for those you wish to learn a little bit about the .Net framework. Not only will it show you how .Net operates, it will explain where ASP.NET fits in.What is .NET, though? If you check out Microsoft's .NET Page, it is described as "Microsoft's platform for XML Web services." Microsoft also describes .NET as a way of delivering software services....

Pro PHP: Chapter 9: Introduction to the Standard PHP Library        
Total Hits: 2  |  Today: 0 Author: aPress, John Dorsey       Rating:  
Read Reviews | Write Review |              Your Rating: 

The Standard PHP Library (SPL) is where PHP 5's object-oriented capabilities truly shine. It improves the language in five key ways: iterators, exceptions, array overloading, XML, and file and data handling. It also provides a few other useful items, such as the observer pattern, counting, helper functions for object identification, and iterator processing. Additionally, it offers advanced functionality for autoloading classes and interfaces. This chapter introduces you to this very important li...

Introduction to XPS - Part 1 of n(ot too many)        
Total Hits: 2  |  Today: 0 Author: Lee Humphries       Rating:  
Read Reviews | Write Review |              Your Rating: 

XPS (XML Paper Specification) is a fixed page format specification that is a useful alternative to PDF. Just as PDF is a 'cut-down' version of Postscript, XPS is a reduced schema version of XAML specifically for fixed page layout. With XPS being XML based it should be a great format for generating your own documents, unfortunately there seems to be little available describing this format in a way that's useful to actual implementation when you want to do just that. I'm hoping to help fill in som...

Introduction to Terracotta DSO        
Total Hits: 5  |  Today: 0 Author: mhilario       Rating:  
Read Reviews | Write Review |              Your Rating: 

ava applications are easiest to write and test when they run in a single JVM. However, the requirements to make applications scalable and highly available have forced Java applications to run on more than one JVM. In this article, we introduce Terracotta, an enterprise-class, open-source JVM-level clustering solution. JVM-level clustering simplifies enterprise Java by enabling applications to be deployed on multiple JVMs, yet interact with each other as if they were running on the same JVM....

Hello, C++/CLI        
Total Hits: 9  |  Today: 0 Author: Stanley B. Lippman       Rating:  
Read Reviews | Write Review |              Your Rating: 

C++/CLI is a self-contained, component-based dynamic programming language that, like C# or Java, is derived from C++. Unlike those languages, however, we have worked hard to integrate C++/CLI into ISO-C++, using the historical model of evolving the C/C++ programming language to support modern programming paradigms. You can say that C++/CLI is to C++ as C++ is to C. More generally, you can view the evolution leading to C++/CLI in the following historical context:
* BCPL (Basic Computer Pr...

Introduction to COM Interop        
Total Hits: 7  |  Today: 0 Author: Thottam R. Sriram       Rating:  
Read Reviews | Write Review |              Your Rating: 

COM is a wonderful technology. One aspect of the common language runtime (CLR) that makes it an extremely powerful platform is that it allows seamless interactions between Microsoft® .NET applications and unmanaged COM components. However, when I searched the Web, I found few working samples demonstrating the very basic concepts of COM interop. The purpose of this column is to illustrate those basic concepts in order to provide solid working examples that can jump-start users in this technology....

EEK! An Introduction        
Total Hits: 9  |  Today: 0 Author: Stanley B. Lippman       Rating:  
Read Reviews | Write Review |              Your Rating: 

In my previous series of columns, we moved an existing ISO-C++ application to the Microsoft® .NET Framework incrementally, illustrating the interoperability features of C++/CLI, and highlighting differences in the C++ and .NET object models. In this next series of columns, we’ll explore using C++/CLI as a purely .NET-compliant language. The application, for reasons that will soon become apparent, is code-named EEK! Because I am currently spending most of my time working on the server side of MMO...

Extension Methods        
Total Hits: 6  |  Today: 0 Author: Adrian Spotty Bowles       Rating:  
Read Reviews | Write Review |              Your Rating: 

With traditional object-oriented development, extending classes is typically achieved by deriving from a base class and enhancing the functionality in the derived class. Visual Basic® still supports these object-oriented concepts, but classes are sometimes marked NotInheritable to prevent modification of their behavior through inheritance. As a result, there is no way to customize these classes. An example of this is the System.String class. A new feature made available in Visual Basic 2008, how...

Retrieve First letter of two words sentence        
Total Hits: 10  |  Today: 0 Author: SeeSharp       Rating:  
Read Reviews | Write Review |              Your Rating: 

Sometimes while developing an application we need to enter first name and last name ar anything related to this. While inserting into the database it will be done as it is. but sometimes while retrieving the same need manipulation as was in my case. So in my application it was required to retrieve first letter of two words sentence and generate a report based on that. I initially tried it in code behind but later i realised it can be done in a very simple way with just a ONE LINE QUERY....



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