Programmer's Heaven - For C C++ Pascal Delphi Visual Basic Assembler C# .Net java JSP ASP ASP.NET Javascript developers!

Members
Username:

Password:

Auto-login

Register
Why register?
Forgot Password?
Blogs new Blog section
Jobs
Webtools
Message Boards
FAQ
CodePedia
Free Magazines
User search
What's New
Top lists
RSS Feeds RSS Feed

Submit content
Contact Us
Link To Us
Help



Advanced Search
Newsletter
E-mail:


More information
Current area: HOME -> ASP / ASP.NET -> General Articles Adds this page to your personal favorites
  General
A La Carte: Make Highly Customized Menus with Ease in ASP.NET 2.0
In ASP.NET 2.0, Microsoft has added a full-featured Menu control that you can use to display menus statically or dynamically, vertically or horizontally, containing either text or images. Finally, you can stop maintaining your JavaScript-based menus by hand.
Visits: 378 Updated: 2005-4-14  Rating: (Not Rated)  More info & Ratings
Accessibility Improvements in ASP.NET 2.0 - Part 1
In this two-part article, we've tried to show you how easy it is to provide better accessibility in your pages for disadvantaged visitors. In particular, the users of non-graphical and non-visual user agents depend heavily on the extra features that you include in your pages, but which are not visible to users of the ubiquitous graphical browser such as Internet Explorer or Mozilla.
Visits: 191 Updated: 2005-4-15  Rating: (Not Rated)  More info & Ratings
Advertisment
Accessibility Improvements in ASP.NET 2.0 - Part 2
In this two-part article, we've tried to show you how easy it is to provide better accessibility in your pages for disadvantaged visitors. In particular, the users of non-graphical and non-visual user agents depend heavily on the extra features that you include in your pages, but which are not visible to users of the ubiquitous graphical browser such as Internet Explorer or Mozilla.
Visits: 146 Updated: 2005-4-15  Rating: (Not Rated)  More info & Ratings
Additional functionality for ASP.NET 2.0's CookieParameter
This article addresses some missing functionality in ASP.NET 2.0's CookieParameter type, including getting a multi-valued cookie Key value and providing some HttpCookieEncryption support.
Visits: 394 Updated: 2005-4-14  Rating: (Not Rated)  More info & Ratings
ASP.NET 2.0 Profile: Simple User Personalization for Your Web Apps
Most enterprise Web applications need to track user preferences across multiple visits. In ASP.NET 1.x, you need to write lots of code to create this functionality. ASP.NET 2.0 introduces a new object, named profile, that simplifies the steps involved in tracking personalization information. This article provides an introduction to the profile object and differentiates it from the session object. It also demonstrates how to define user profiles, both simple name/value pair profiles and profile groups. Finally, it explains the procedures involved in configuring profiles to work with different providers.
Visits: 547 Updated: 2005-9-27  Rating: (Not Rated)  More info & Ratings
ASP.Net V2.0 - Introduction
Since Whidbey and ASP.Net V2.0 has been unveiled by Microsoft at PDC 03, we thought that we should start updating you guys with some previews of new IDE and framework. If you attended PDC 03 or has MSDN subscription then you have access to these pre-beta bits of the framework. If you don't have access to Whidbey bits, even then this series should be a curtain raiser to see what new stuff you will be expecting from Microsoft in the new framework.
Visits: 297 Updated: 2005-4-15  Rating: (Not Rated)  More info & Ratings
ASP.NET Whidbey Features
The new Version ASP.NET 2.0 (code-named Whidbey) has many improvements that greatly increase developer productivity. These new enhancements arm the developers with a powerful platform that can make a significant impact in the way Web applications are developed and maintained. Apart from increasing the productivity of the developers, ASP.NET 2.0 also provides a number of excellent features, such as Master Pages, Themes, Personalization features and web parts.
Visits: 276 Updated: 2005-9-27  Rating: (Not Rated)  More info & Ratings
Asynchronous page - ASP.Net 2.0
Beta 2 of Asp.Net 2.0 will have a better support for asynchronous page tasks. Instead of looking a thread until a page has bean completely proceed, you can now use the improved asynchronous feature that could increase the performance of a 3-tier application. In this post I will write about the asynchronous page tasks.
Visits: 231 Updated: 2005-4-15  Rating: (Not Rated)  More info & Ratings
Binding to XML Data in ASP.NET 2.0
ASP.NET 1.0 featured easy binding of user interface controls to ADO.NET data sources. ASP.NET 2.0 extends this concept to make it easy to bind XML files directly to the user interface. See how in this demonstration.
Visits: 1271 Updated: 2006-2-17  Rating: (Not Rated)  More info & Ratings
Configuring Your ASP.NET 2.0 Site
If you did any work in ASP.NET 1.0, you're intimately familiar with grubbing around in the web.config file. The file is still there in 2.0, but now there are new tools to help you avoid the drudgery. In this article, you'll see how upgrading to ASP.NET 2.0 can take some of the pain out of maintaining an ASP.NET Web site.
Visits: 587 Updated: 2006-2-21  Rating: (Not Rated)  More info & Ratings
Creating a Website Statistics Application -Track Unique Users and Page Views
In this tutorial we will learn how to create a website tracker using ASP.NET 2.0 (C#) that will allow us to track unique users and page views on a daily, monthly and yearly basis.
Visits: 104 Updated: 2007-6-14  Rating: (Not Rated)  More info & Ratings
Cross page postbacks in ASP.NET 2.0
ASP.NET 2.0 introduces the ability to have an ASPX page postback to a different ASPX page with cross page postbacks. This was done all the time in ASP but wasn't supported in ASP.NET 1.x. Here we show you how to use this new feature.
Visits: 494 Updated: 2005-4-19  Rating: (Not Rated)  More info & Ratings
Custom Paging in ASP.NET 2.0 with SQL Server 2005
A common pattern in web development is providing paged access to data. Rather than displaying the entire contents of a report or database table to an end user, developers often show only a subset of records per web page, with controls for moving from page to page. With ASP.NET 1.x, the DataGrid made paging incredibly simple - just set the AllowPaging property to True and add a few lines of code in the PageIndexChanged event handler and you were done! ASP.NET 2.0's GridView makes the process even simpler - just check the Enable Paging option from the GridView's smart tag - no code needed.
Visits: 659 Updated: 2006-4-1  Rating: (Not Rated)  More info & Ratings
Effective Data Paging Using SQL Server 2005 and Microsoft's Enterprise Library
Effective data paging always has two parameters, PageSize and CurrentPage. Non-effective data paging will most likely have something like CurrentRecord and MaxRecords. This forces you to save the last record somewhere in order to know which records you are going to be pulling out next. Also, non-effective data paging can be done using a data adapter.
Visits: 413 Updated: 2006-1-16  Rating: (Not Rated)  More info & Ratings
Mobile-enable Your Existing Web Apps with ASP.NET 2.0
Besides adding a multitude of new features and more than 30+ new controls, Microsoft also made every control in ASP.NET 2.0 mobile aware. Learn how to leverage these new mobile capabilities and what bugs to avoid while mobile-enabling your Web-based applications.
Visits: 323 Updated: 2005-4-15  Rating: (Not Rated)  More info & Ratings
New Features of ASP.NET 2.0
ASP.NET 2.0 provides many new and improved features for developers to improve the performance and reduce the code. This article discusses new features of ASP.NET 2.0.
Visits: 176 Updated: 2005-4-14  Rating: (Not Rated)  More info & Ratings
Refactoring in Visual Studio 2005
Refactoring allows developers to use the built-in feature of Visual Studio to rename and convert and change the signatures and definitions of a class members. In this article, I will show you how refactoring feature provided by Visual Studio 2005 can be a handy tool when you are reorganizing or optimizing your existing projects.
Visits: 385 Updated: 2005-4-14  Rating: (Not Rated)  More info & Ratings
The Code Models Of ASP.NET 2.0
The typical web form consists of controls (like labels, buttons, and data grids), and programming logic. In ASP.NET 2.0, there are two approaches to managing these control and code pieces: the single-file page model and the code-behind page model. Regardless of which model you choose, it’s important to understand how the runtime is processing and executing your web forms behind the scenes. In this article, we will examine how web forms move from design time to run-time in ASP.NET 2.0.
Visits: 314 Updated: 2005-9-28  Rating: (Not Rated)  More info & Ratings
Using Property Extender Providers with ASP.NET 2.0
Property extender providers are widely used in the Windows Forms environment where this technology enjoys full support of the .NET Framework and Visual Studio IDE. Conversely ASP.NET developers do not always fully appreciate the benefits of the technique. This article demonstrates how to take advantage of the property extenders in ASP.NET custom control projects and suggests practical solutions to issues with design-time serialization and state management posed by ASP.NET 2.0 and Visual Studio 2005.
Visits: 333 Updated: 2005-9-27  Rating: (Not Rated)  More info & Ratings
Web Site Operations in ASP.NET 2.0
How ASP.NET 2.0, Internet Information Services 6.0, and the Microsoft .NET Framework 2.0 make deploying, configuring, monitoring, and maintaining Web applications easier than ever before. Gives an overview of how to perform IT operations with ASP.NET 2.0 and IIS 6.0.
Visits: 182 Updated: 2005-4-14  Rating: (Not Rated)  More info & Ratings


Found a broken link? Please report it to us.

 

Sponsored Links 
3 Months Free - ASP.NET Web Hosting
3 Months Free & No Setup Fees on ASP.NET 3.5/2.0 Hosting on Windows 2008/2003 Servers – Click Here!
SFTP components for .NET
Add complete SSH and SFTP support to your .NET framework application
PureCM Software Configuration Management
Version control and integrated issue tracking - powerful and easy to use. Get your FREE trial now!
Web based bug tracking - AdminiTrack.com
AdminiTrack offers an effective web-based bug tracking system designed for professional software development teams.
See how EASY REMOTE SUPPORT can be. Try WebEx FREE!
DELIVER SUPPORT MORE EFFICIENTLY. Remotely Control Applications. Leap Securely through Firewalls!
Buy a link now

Advertisement

  Free Magazine  
Free Magazines
InformationWeek Focuses on the strategic side of information technology....
subscribe now


Newsletter Submit Content About Advertising Awards Contact Us Link to us    
© 1996-2008 Community Networks Ltd All rights reserved. Reproduction in whole or in part, in any form or medium without express written permission is prohibited. Violators of this policy may be subject to legal action. Please read Terms Of Use and Privacy Statement for more information. Development by ASP.NET Konsult - Synchron Data.