<?xml version="1.0" encoding="iso-8859-1"?><rss version="2.0"><channel><title><![CDATA[Northstar Developer Center - Latest ASP.NET Content]]></title><link>http://developercenter.northcomp.com</link><description><![CDATA[Northstar Developer Center]]></description><language>en-us</language><copyright>Copyright 1996-2012 Northstar Computer Systems</copyright><managingEditor>editor@northcomp.com</managingEditor><webMaster>editor@northcomp.com</webMaster><docs>http://backend.userland.com/rss</docs><item><title>Using a BasePage Class</title><link>http://developercenter.northcomp.com/article/Using-BasePage-Class</link><guid>http://developercenter.northcomp.com/article/Using-BasePage-Class</guid><description>
Something I've been doing with my ASP.NET applications is creating a shared Page class from which all my Web pages inherit. This allows all the pages to sh...</description></item><item><title>Create a ViewState Property</title><link>http://developercenter.northcomp.com/article/Create-ViewState-Property</link><guid>http://developercenter.northcomp.com/article/Create-ViewState-Property</guid><description>
ASP.NET uses the ViewState to store data going back and forth to the server, eliminating the manual drudgery of reloading form controls and so forth. The V...</description></item><item><title>Using the ItemCommand Event of the Repeater Control</title><link>http://developercenter.northcomp.com/article/ItemCommand-Event-Of-Repeater</link><guid>http://developercenter.northcomp.com/article/ItemCommand-Event-Of-Repeater</guid><description>
I'm a bit of an HTML purist, so I love the Repeater control. It allows me to specify exactly which HTML ASP.NET uses to create a table, list, etc. without ...</description></item><item><title>Using the ItemDataBound Event of the Repeater</title><link>http://developercenter.northcomp.com/article/Using-the-ItemDataBound-Event-of-the-Repeater</link><guid>http://developercenter.northcomp.com/article/Using-the-ItemDataBound-Event-of-the-Repeater</guid><description>
Each time a data record is added to the Repeater control, an ItemDataBound event is fired. Within the event, you can access the controls that are created, ...</description></item><item><title>Adding Message and Confirmation Boxes</title><link>http://developercenter.northcomp.com/article/Adding-Message-And-Confirmation-Boxes</link><guid>http://developercenter.northcomp.com/article/Adding-Message-And-Confirmation-Boxes</guid><description>
Any time I have a Delete or Cancel button, I add a JavaScript confirmation dialog to keep the user from doing something he might regret. In other cases, a ...</description></item><item><title>Create a Perpetual Copyright Notice</title><link>http://developercenter.northcomp.com/article/Create-a-Perpetual-Copyright-Notice</link><guid>http://developercenter.northcomp.com/article/Create-a-Perpetual-Copyright-Notice</guid><description>
One of the easiest ways to tell if a Web site has been updated recently is to check the bottoms of its pages. Many sites include page footers with their co...</description></item><item><title>Using RadioButtons in a Repeater</title><link>http://developercenter.northcomp.com/article/Using Radio Buttons in a Repeater</link><guid>http://developercenter.northcomp.com/article/Using Radio Buttons in a Repeater</guid><description>
The ASP.NET Repeater control is one of my favorites, mainly because it is fully customizable and it allows me to build many types of applications. However,...</description></item><item><title>Control the Layout Of Your Input Forms</title><link>http://developercenter.northcomp.com/article/Control-the-Layout-Of-Your-Input-Forms</link><guid>http://developercenter.northcomp.com/article/Control-the-Layout-Of-Your-Input-Forms</guid><description>
Although many of your input forms will have a fixed number of fields, in some cases you'll need to vary the number and configuration of your controls. This...</description></item><item><title>Creating a Form Using Placeholder Controls</title><link>http://developercenter.northcomp.com/article/Creating-a-Form-Using-Placeholder-Controls</link><guid>http://developercenter.northcomp.com/article/Creating-a-Form-Using-Placeholder-Controls</guid><description>Previous tips explained how to use a Repeater control to build a dynamic form containing some number of text box controls. However, you may have a case in wh...</description></item><item><title>Restricting Access to Downloadable Files</title><link>http://developercenter.northcomp.com/article/Restricting-Access-To-Downloadable-Files</link><guid>http://developercenter.northcomp.com/article/Restricting-Access-To-Downloadable-Files</guid><description>
A developer, working on a Web application that allowed only registered members to access a file, recently asked me if there was any way to control how the ...</description></item><item><title>Selecting Master Pages On The Fly</title><link>http://developercenter.northcomp.com/article/Selecting-Master-Pages-On-The-Fly</link><guid>http://developercenter.northcomp.com/article/Selecting-Master-Pages-On-The-Fly</guid><description>Master pages, introduced with ASP.NET 2.0, provide developers an easy way to create a shared layout for a site or portion of a site without having to work ar...</description></item><item><title>Creating Nested Master Pages</title><link>http://developercenter.northcomp.com/article/Creating-Nested-Master-Pages</link><guid>http://developercenter.northcomp.com/article/Creating-Nested-Master-Pages</guid><description>
Master pages are the best solution for creating a Web site that has shared elements, such as headings and navigation bars. Sometimes you may want to have o...</description></item><item><title>Adding a New Event in ASP.NET</title><link>http://developercenter.northcomp.com/article/Adding-New-Event-In-ASP-NET</link><guid>http://developercenter.northcomp.com/article/Adding-New-Event-In-ASP-NET</guid><description>
An application I have uses a custom Login control that handles user registration and login functions. This control has an event called UserAuthenticated th...</description></item><item><title>Exporting Data to Excel</title><link>http://developercenter.northcomp.com/article/Exporting-Data-To-Excel</link><guid>http://developercenter.northcomp.com/article/Exporting-Data-To-Excel</guid><description>
A common request of users is to be able to download data for use in Microsoft Excel. This is actually fairly easy to accomplish without a lot of extra work...</description></item><item><title>Creating an Atom XML Feed</title><link>http://developercenter.northcomp.com/article/Creating-An-Atom-XML-Feed</link><guid>http://developercenter.northcomp.com/article/Creating-An-Atom-XML-Feed</guid><description>
An easy way to promote your site and to attract more visitors is to provide a news feed. Feeds can be read by a variety of programs, including FeedDemon, M...</description></item><item><title>Creating a Composite Web Control</title><link>http://developercenter.northcomp.com/article/Creating-A-Composite-Web-Control</link><guid>http://developercenter.northcomp.com/article/Creating-A-Composite-Web-Control</guid><description>
Adding user controls to a web application is a fairly easy thing to do. You essentially create a portion of a web page, add your HTML, and then use the con...</description></item><item><title>Binding to Alternate Data Sources</title><link>http://developercenter.northcomp.com/article/Binding-To-Alternate-Data-Sources</link><guid>http://developercenter.northcomp.com/article/Binding-To-Alternate-Data-Sources</guid><description>Two of the controls introduced with .NET were the validation control and the validation summary control. I do a lot of server-side validation and I liked the...</description></item><item><title>Persistent Logins under ASP.NET 2.0</title><link>http://developercenter.northcomp.com/article/Persistent-Logins-Under-ASPNET-20</link><guid>http://developercenter.northcomp.com/article/Persistent-Logins-Under-ASPNET-20</guid><description>
For some sites, allowing users to "save their passwords" is not a major security concern, and it speeds up the user's ability to interact with the site. As...</description></item><item><title>ASP.NET Repeater Control's ItemDataBound Event</title><link>http://developercenter.northcomp.com/article/ASP-NET-Repeater-Control-ItemDataBound-Event</link><guid>http://developercenter.northcomp.com/article/ASP-NET-Repeater-Control-ItemDataBound-Event</guid><description>In the previous tip, you saw how to use a Repeater to respond to events generated within the Repeater. This tip will show you how to work with the fields and da...</description></item><item><title>IIS 6.0 File Types</title><link>http://developercenter.northcomp.com/article/IIS-6-File-Types</link><guid>http://developercenter.northcomp.com/article/IIS-6-File-Types</guid><description>One of the "enjoyable" parts of running a web hosting company is dealing with the changes that appear in new releases of products. I run exclusively on Windo...</description></item></channel></rss>
