| A simple RadioButtonList in a Web DataGrid Column |
| The Code Project |
| A very simple and practical way, how a single RadioButton acts as a RadioButtonList in a web DataGrid server control column. |
|
| Advanced Data Mapping in .NET |
| DotNetJunkies |
| In this article, Tin demonstrates 3 automated mechanisms for data mapping: mapping from Database table columns to object properties, mapping from HTML form fields to object properties, mapping from ASP.NET Web controls to object properties. |
|
| Building a CheckBoxList Validator Control - Part 2 |
| DotNetJunkies |
| As promised, this week we will be going over how to add client-side JavaScript to a custom validator control. <b>But</b> last week I was asked a very interesting question. What validator control should I use to validate that a CheckBox was checked within a CheckBoxList? The anwser was simple, NONE. None of the validator controls in the .NET valiator control suite does this type of validation. So, in this article not only are we going to discuss how to add JavaScript validation control for client-side valida |
|
| Building a CheckBoxList Validator Control - Part 2 |
| DotNetJunkies |
| As promised, this week we will be going over how to add client-side JavaScript to a custom validator control. But last week I was asked a very interesting question. What validator control should I use to validate that a CheckBox was checked within a CheckBoxList? The anwser was simple, NONE. None of the validator controls in the .NET valiator control suite does this type of validation. So, in this article not only are we going to discuss how to add JavaScript validation control for client-side validation, but how to create a CheckBoxListRequiredFieldValidator control. |
|
| Classic ASP Framework - Make your Classic ASP code work like in ASP.NET |
| The Code Project |
| Developing in Classic ASP using the same technics as in ASP.NET?. If you have to work in Classic ASP, why don't do it the right way?. By using a similar framework not only your code will be more organized and efficient, but it will take you a fraction of the time to port to ASP.NET! |
|
| CodeSnip: XML Form Generator, Part 1: Generating an XML Form |
| http://aspalliance.com/ |
| One of the most frequent tasks that web developers receive is that of creating a form to collect user input. One solution is to use an ASP.NET web page to create an XML file that will be used as the basis for a Web form. The three part article, XML Form Generator, will demonstrate how to easily create an XML form that will save user input as an XML file. |
|
| Databinding with XML |
| ASP Alliance |
| With XML becoming a prominent data source in ASP.NET and with more and more people using it, it only makes sense to be able to use it for databinding. This article is going to show you how to use an XML file to bind to several different controls. |
|
| DataGrid Foreign Event Handling |
| DotNetJunkies |
| DataGrids seem to be very popular among all ASP.NET developers these days. I've seen whole series of articles and a lot powerful custom controls released for it. I personally think they are great as long as you manage your ViewState size and don't try to think too much outside the box, or grid in this case. Anyhow, one thing that has bothered me is that it isn't easy to wire up events like, OnSelectedItemIndexChange, in template columns containing controls like the RadioButtonList or DropDownList. |
|
| DataList vs. DataGrid in ASP.NET |
| MSDN |
| This month I want to look at two of the more specialized controls that come with the ASP.NET Framework: the DataList and the DataGrid. Both of these controls are full-featured data-managing tools. In addition to providing a simplified UI programming model for displaying data, ASP.NET includes facilities for binding data sources to these controls so you don't have to write all the code necessary to fish around a database and present your content. This month I'll compare and contrast the DataGrid and DataList controls, starting with DataGrid. |
|
| Declarative ASP.NET globalization |
| The Code Project |
| An article on how to implement globalization support for ASP.NET pages through attributes and reflection |
|
| Enable ReadOnly Mode for your WebForms! |
| The Code Project |
| this article will show you, how to implement a readonly mode for webforms |
|
| Hangman: Using GDI+ in ASP.NET Applications |
| C# Corner |
| This example shows how you can combine GDI+ commands on a web form. My example code implements a web page which is the game of hangman written in C#. For those that are not familiar the idea is to answer questions and every time you get one wrong you get closer to being hanged. |
|
| How To Highlight a DataGrid Row |
| DotNetJunkies |
| This How To explains a way to build a searched SQL query and a DataGrid to display the results of the search and highlight only the record searched for specifically. |
|
| INFO: Roadmap for Web Forms Data Binding |
| http://www.kbalertz.com/ |
| (313481) - This article provides a roadmap to learn and master data binding using ASP.NET Web Forms. To assist you with learning a Microsoft product or technology, roadmap articles provide links to useful information, including online documentation, Microsoft... |
|
| Introduction to ASP.NET and Web Forms |
| MSDN |
| This article explains how Web forms are fundamental to Microsoft ASP.NET, shows how to build a Web form, and discusses the controls essential for building a Web form. |
|
| ListControl SelectedItem Validator |
| The Code Project |
| As you all know the ASP.NET RequiredFieldValidator control checks that the validated control to see if it contains a value. If it doesn't it displays an error message. The problem is that RequiredFieldValidator does not work for ListControl derived controls. |
|
| Storing User Information with ASP.NET 2.0 Profiles |
| MSDN |
| Use the new Profile object in ASP.NET 2.0 to track user preferences, create a shopping cart, and more. |
|
| Taking a Bite Out of ASP.NET ViewState |
| MSDN |
| The Web is stateless, and so are ASP.NET Pages. They are instantiated, executed, rendered, and disposed on every round trip to the server. As a Web developer, you can add statefulness using well-known techniques like storing state on the server in Session state or by posting a page back to itself. |
|
| Validation in ASP.NET |
| ASP Alliance |
| When you have a form that user's submit data, its important that they don't mess it up and enter weird stuff. Validation stops this but in ASP it was a tedious job of If statements to work out. I myself had a simple form that added users to a database, it had a heck of a lot of if statements. ASP.NET introduces - Validation Controls. These controls are just like Web Controls and can do many things like - Check if a field is filled out, Compare a field to something (or another), Use regular expressions on a field, Check to see if a field is within a certain range, you can even create your own! |
|
| Web Forms Controls in the DataGrid |
| ASP Alliance |
| I see an increasing amount of posts in the ASP.NET newsgroups about how to include drop-down lists or some other form of server control in a DataGrid. This article is designed to show you how to incorporate some of these server controls and give a few examples about their usage. |
|
| Working with Client-Side Script |
| MSDN |
| While ASP.NET performs most of its processing on the server, some actions are better served by client-side processing. Scott Mitchell shows how your ASP.NET pages and controls can add client-side code. |
|
| Writing a Days of the Week Selector Control |
| http://aspalliance.com/ |
| In this article I'll describe the process I went through to create a control for choosing days of the week. The need driving this is the creation of an admin program that allows certain tasks to be scheduled for certain days of the week, a la Windows Scheduled Tasks. |
|