Storing User Profiles
in .NET added by admin, on 9/3/2008 examples intermediate user
User Profiles - The profile feature in ASP.NET 2.0 allows you to define and store per-user settings to be used throughout your application. Settings can also be stored in an anonymous profile while users are not logged in, and then migrated to a logged-in user profile at a later time.
comment save reportCreating Multiple Choice Exam Application Part I
in .NET added by admin, on 7/1/2008 database intermediate xml
This is the first part of a multi-part series. In this series we will cover the scenario of creating a multiple choice exam for the user. In the first part I will cover the design of the application. This will include unit tests, domain objects and NHibernate mapping files
comment save reportGlobalization and Localization
in .NET added by admin, on 27/12/2007 intermediate localization
Explains how to make international applications customizable to users belonging to different nations, cultures, or regions.
comment save reportBuilding a Gmail Style File Uploading System using ASP.NET 2.0
in .NET added by admin, on 20/12/2007 ajax beginner tutorials file upload
This article examines how to upload files to a web server using ASP.NET 2.0 with a different approach. With a click of a hyperlink you can show the "Choose File" dialog box and immediately once the user clicks the OK button from the File Choose dialog box, a file can be uploaded to the server.
comment save reportCreating a Data Access Layer
in .NET added by admin, on 14/12/2007 beginner tutorials data access layer database
In this tutorial we'll start from the very beginning and create the Data Access Layer (DAL), using typed DataSets, to access the information in a database.
comment save reportRead Asp.net Request Param and Session dynamically into properties
in .NET added by admin, on 2/12/2007 intermediate reflection
Article shows how you can use Attributes and Reflection to dynamically populate property with value from param, session or context without writing any addition code. I have used this technique in past and I hope you will also find it useful.
comment save reportData Visualization Using ASP.NET 2.0
in .NET added by admin, on 1/12/2007 intermediate visualization
Explains how to analyse and graphically visualise numeric data from dataset (iris).
comment save reportAn Architectural View of the ASP.NET MVC Framework
in .NET added by admin, on 24/11/2007 MVC framework intermediate
At DevConnections Fall and TechEd Europe, Microsoft recently unveiled the ASP.NET MVC Framework. MVC stands for Model-View-Controller and is one of the most popular design patterns for decoupling data access and business logic from data presentation and user interaction. At the time of this writing, the framework is not available yet, not even as a CTP. However, the first CTP is expected to ship in just a few weeks.
comment save reportDelegates and Events in C#
in .NET added by admin, on 18/11/2007 delegates event intermediate
This C# tutorial will teach you how to create delegates and events in C# using a practical example of creating two applications, a client and a multi-threaded server. You will learn how to fire your own custom event from a class and handle it in a different class.
comment save reportAn Introduction to AJAX and Atlas with ASP.NET 2.0
in .NET added by admin, on 25/10/2007 ajax database intermediate
Traditionally, web applications have left a lot to be desired from a user experience standpoint, due primarily to the "request/response" lifecycle. Any interaction with a page typically requires a postback to the web server (a "request"), which then performs any server-side tasks needed and returns the updated page's markup (the "response"). Outside of intranet-based applications, such behavior adds a bit of a lag when interacting with a page. One approach to improving the end user's experience is to use AJAX. AJAX-enabled pages provide a slick, responsive user experience, making web-based applications function more like desktop-based ones.
comment save reportRecordset Paging with ADO 2.0
in .NET added by admin, on 25/10/2007 beginner tutorials pagination
Recordset paging is the process of breaking up a recordset into multiple "pages" of information for display. You've probably noticed that most well designed sites implement this feature, allowing you to navigate through a recordset to view a certain number of records at a time.
comment save reportASP.NET 2.0 Caching
in .NET added by admin, on 21/9/2007 advanced content management
Probably one of the coolest features with ASP.NET is caching, ASP.NET 2.0 has new caching features that I will explore in this article.
comment save report