Explains how to create, manage and synchronize threads manually in ASP.NET. Some times thread pool technique is not sufficient to manage certain cases within your application, and the need for manually creating and fully managing a new thread arises. Creating threads manually is much more complex than using the thread pool, and requires you to have knowledge about threading life cycle and concepts.
FreeVersion: 1 Platform(s): windows Updated: Mon Feb 12 2007
Explains different techniques of ASP.NET WebApplication speed optimizations regarding to use of: - page and server controls, - web application settings - best coding practices.
FreeVersion: 1 Platform(s): windows Updated: Tue Jan 16 2007
Caching is the most effective technique you can use to improve the performance of your ASP.NET web application. Designing your application with caching in mind, improves both the performance and the scalability of that application.
FreeVersion: 1 Platform(s): windows Updated: Tue Jan 16 2007
In this tutorial, we will try to validate some data coming from a form input. While using this sample code will check the date is true and in correct format. We will compare the date within a culture date format. Code can do two jobs for us : date is valid and date is in correct format.
FreeVersion: n/a Platform(s): windows Updated: Mon Jan 8 2007
Developing a web application that responds to users requests quickly is a target and a challenge for all web developers. ASP.NET was designed with speed optimization and performance improvements in mind. This tutorial covers correct using of state management and data access to develop a high performance ASP.NET application.
FreeVersion: 1 Platform(s): windows Updated: Mon Jan 8 2007
Explans in details how to use XML automatic documentation tags in ASP.NET 2.0 source code. We will illustrate in more details how you can benefit from this technique to the most extent by using some other recommended XML tags to give more comprehensiveness and functionality to your final documentation file.
FreeVersion: 1 Platform(s): windows Updated: Mon Jan 8 2007
A complete ASP.NET 2.0 Notepad Web application example (with source code).
Explains Forms, sign in process, some complex SQL queries and new HiddenField ASP.NET 2.0 server control.
FreeVersion: 1 Platform(s): windows Updated: Wed Dec 13 2006
Explains how to manage a session and application state objects in ASP.NET Web Services.
Using session objects is always a good option for maintaining per user data. But the case of web services is different. In real life, Web services may be called thousands of times a day. In such cases, keeping per user data in the webserver would be a bad approach.
FreeVersion: 1 Platform(s): windows Updated: Tue Nov 21 2006
Explains how Web services work and how to call it from ASP.NET.
When we create and run this web service , it will be run by a web browser. However, in real life, the true aim of web service can only be achieved if we can call it from some web application or a console application.
FreeVersion: 1 Platform(s): windows Updated: Wed Oct 25 2006
Explains how to work with multiple tables, handle errors and how DataSet tracks modified table rows. Whenever a row is changed, its status is set from UnChanged to Modified. Whenever, a new row is added, its status would be depicted by DataRow.Added.
FreeVersion: 1 Platform(s): windows Updated: Wed Oct 25 2006
Really Simple Syndication (RSS) is an XML standard for declaring content entries for small content feeds. The RSS format has gained popularity over the years due to its simplicity. The XML file formatted according to the RSS specification is either found as a physical file or is obtained via a Web site that handles the request and sends the content over the Internet to the client.
FreeVersion: n/a Platform(s): linux, windows, freebsd Updated: Sat Oct 7 2006
In this source code we will look at anyother new focus on ASP.NET. We could write binay files using BinaryWriter class. Let's see it on a sample code. .
FreeVersion: n/a Platform(s): windows Updated: Tue Oct 3 2006
In this source code we will look at how to read an XML data source and how to put it on our ASP.NET page. For this example you can use a sample XML file putting same folder with our source code. .
FreeVersion: n/a Platform(s): windows Updated: Tue Sep 26 2006
The DotNetNuke Skinning Toolkit demonstrates all of the skin classes within DotNetNuke so that you can easily view, search and learn how to style the various elements within a DotNetNuke skin.
Each DotNetNuke class is presented with an image and the various styling options available through CSS.
FreeVersion: n/a Platform(s): windows Updated: Thu Sep 28 2006
Datasets store a copy of data from the database tables. However, Datasets can not directly retrieve data from Databases. DataAdapters are used as a link between them.
This tutorial explains how to manipulate data in database using DataSet and DataAdapter objects.
FreeVersion: 1 Platform(s): windows Updated: Wed Sep 27 2006
In this code sample we will take a look at how to use SCOPE_IDENTITY() in ASP.NET. We use this function to get new ID of inserted record from SQL database. .
FreeVersion: n/a Platform(s): windows Updated: Wed Sep 13 2006
Advanced use of Master Pages in ASP.NET 2.0 to achieve consistent look and feel of your web site. Master Pages enables us to apply the same page layout to multiple pages in a Web Application.
FreeVersion: 1 Platform(s): windows Updated: Tue Sep 12 2006
Explains how to simulate hidden column in GridView control. GridView is one of the new controls in ASP.Net 2.0 that replaced the DataGrid.
In earlier versions of .Net when you didn't want the data to be visible to the client, you simply set the Column visibility to False. But, if you try that with ASP.NET 2.0 GridView control, it will return only empty string.
FreeVersion: 1 Platform(s): windows Updated: Fri Sep 8 2006