AspNetAtoms.com daily updates on ASP.NET Tutorials, Articles, Authors and more. Subscribe to our newsletter and receive updates on ASP.NET resources on the Internet.
Categories
- AJAX
- ASP.NET Beginner Tutorials
- ASP.NET Tutorials
- Database
- File System
- Graphics
- Miscellaneous
- Network
- Resources
- Validation
- XML
Recent Posts
- Make Your ASP.NET Mobile Forms Timer-Refresh and Autoredirect : Peter Bromberg
You can't use javascript in Mobile Forms, and they won't render the META Refresh tag either. Here's a - Inversion of Control and Dependency Injection with Castle Windsor Container - Part IV : Simone Busoli
In this article I introduce the missing core features I didn't tackle before. They require a little more - Developing Gadgets For The Windows Vista Sidebar : Scott Allen
Windows Vista introduced the Sidebar – an anchored panel on the Windows desktop that can host mini-applications - .NET CodeToHTML : Paschal L
This article shows you how to convert source code to HTML. The aim of this article is to share with you - Save Changes on Close of Browser or when exiting the page. : Abishek R Srikaanth.
This article describes on how you can implement the functionality of saving changes on close of the browser
Handling Data After Post Back : Bipin Joshi
Monday, January 19 2009
In the last two lessons you were introduced with rendering of custom controls. Often your custom controls consist of input controls that allow users to edit data. The new data entered by the user must be persisted across post backs. In this lesson you will learn just that. IPostBackDataHandler interface In order to handle data after page post back the custom control class must implement IPostBackDataHandler interface. The IPostBackDataHandler interface defines the following two methods: LoadPostData: The LoadPostData method allows you to read posted data. The method receives two parameters viz. postDataKey and postCollection. The postDataKey is the ID of the custom control and postCollection contains all the posted data. You can retrieve posted data for your custom control by specifying the postDataKey. The LoadPostData method should return true if the data inside the control has been changed else it should return false....Adding a build banner to ASP.NET Pages : Adam Langley
Crystal Reports in ASP.NET : Richard Bean
Image Manager for Image Gallery : Saifi Hasan
Introduction Part 3: Master Pages and Site Navigation : Scott Mitchell
ASP.NET Tip: Creating Paging for a Repeater Control : Eric Smith

