| 10 Things You Shouldn't Do with SQL Server (Data Access Developer "Don'ts") |
| DotNetJunkies |
| In this article Doug Seven will walk through 10 of the more common mistakes made by data access developers using SQL Server. |
|
| ASP.NET Validation Controls |
| DotNetJunkies |
| Input validation can be a tricky thing. Ideally we should validate the data on the client side to prevent unnecessary round trips to the server. That requires JavaScript. But not every browser out there processes JavaScript (hard to believe, isn't it). And even still, changing the display characteristics to show errors in the input is not always supported. Not to mention, a slightly unethical person could recreate your page, and bypass the validation all together. Ugh! This leaves us with server-side valida |
|
| Building a DataGrid with Add and Edit Features |
| DotNetJunkies |
| The DataGrid server control is one of the most widely used controls in ASP.NET-based projects to display data in a table form. When using a mixture of database- and manually-driven DropDownLists, placing them in a DataGrid can be confusing. In this tutorial, I'll focus on resolving this issue using an example of an expense entry and reporting system. |
|
| Creating A Designer Enabled Custom Validator Control Pt. I |
| http://aspalliance.com/ |
| This is a two-part article. The first part of this article will discuss how to create server-side validation for your custom control and the second part will conclude with a discussion on how to complete your control by adding client-side validation to your control. |
|
| Creating Dynamic Data Entry User Interfaces |
| MSDN |
| Scott Mitchell demonstrates one method of dynamically generating ASP.NET data entry forms based on the data you're editing. |
|
| Cutting Edge: Custom Script Callbacks in ASP.NET |
| MSDN |
| Custom Script Callbacks in ASP.NET |
|
| Data Points - Managing Hierarchical Inserts in ASP.NET and ADO.NET |
| MSDN |
| Manage and persist user input before it's committed to the database |
|
| Generate dynamic asp.net page by using XML and XSLT |
| The Code Project |
| Generates dynamic forms by transforming xml into xsl file |
|
| Generate dynamic ASP.NET pages by using XML and XSLT |
| The Code Project |
| Generates dynamic forms by transforming XML into XSL file. |
|
| HOW TO: Use ASP.NET Validation Controls from Visual Studio .NET (Q316662) |
| http://www.kbalertz.com/ |
| The .NET Framework contains a variety of validation controls that, when placed on an ASP.NET Web Forms page, validate user input entered into the control fields and display associated error messages for each control. This article explains h |
|
| HOW TO: Use the RequiredFieldValidator Control with Other Validation Controls to Handle Blank Entries (Q313044) |
| http://www.kbalertz.com/ |
| This step-by-step article describes how to use the |
|
| HOW TO: Use the RequiredFieldValidator Control with Other Validation Controls to Handle Blank Entries (Q313044) |
| Microsoft Support |
| This step-by-step article describes how to use the |
|
| Implementing an ASP.NET Validator - UriValidator |
| The Code Project |
| An article describing how to implement a custom ASP.NET validator |
|
| Self Validating Text Box - 2 |
| The Code Project |
| This article extends self validating Text Box control to other data types and min and Max value checking |
|
| Validating ASP.NET Server Controls |
| MSDN |
| Delve into the ASP.NET validation server controls, and discover how they can help you to ensure that entered data is valid. |
|
| Validator Controls in ASP.NET |
| The Code Project |
| Validator Controls in ASP.NET |
|
| Validators in a DataGrid |
| DotNetJunkies |
| In this article, Doug shows you how to use the DataGrid EditItemTemplate (from the TemplateColumn) and place a number of validators with their validation properties set either declaratively or programmatically. |
|