| A Calculator using C# |
| The Code Project |
| This is basic Calculator program written in C# which makes use of thevarious Windows Form controls. |
|
| "Can't create a child list" error message when you open a form in Visual Studio .NET |
| Microsoft Support |
|
(816799) - When you delete the table that is bound to a control form of the DataSet Schema and then save the project in Microsoft Visual Studio .NET, you may receive the following error message when you open the form in Design view: Can't create a child list for...
|
|
| "Can't create a child list" error message when you open a form in Visual Studio .NET |
| Microsoft Support |
| (816799) - When you delete the table that is bound to a control form of the DataSet Schema and then save the project in Microsoft Visual Studio .NET, you may receive the following error message when you open the form in Design view: Can't create a child list for... |
|
| "Can't create a child list" error message when you open a form in Visual Studio .NET |
| http://www.kbalertz.com/ |
| (816799) - When you delete the table that is bound to a control form of the DataSet Schema and then save the project in Microsoft Visual Studio .NET, you may receive the following error message when you open the form in Design view: Can't create a child list for... |
|
| A Database Admin Tool in 20 Lines of C# Code |
| ASP Alliance |
| This example illustrates how to create a one page database administration tool with only 20 lines of C# code. Using this example, you can enter almost any Sql statement into a text box and execute the statement against any tables in your database. You can view the results of a SELECT in a DataGrid or the see the affects of UPDATE, INSERT and DELETE statements. |
|
| A DropDownList, EditItemTemplate, using Access, and HttpSessionState...Part 3 |
| DotNetJunkies |
| Here we are at part three of this article! In this part we will be adding one new feature to the code! Instead of making a call to the database to get the data on each request we are going to be saving the <b>DataSet</b> into session state. We will not only be populating the <b>DataGrid</b> and <b>DropDownList</b> controls from this <b>DataSet</b>, but we will also be saving all the edits done by the user. This means that after the <b>DataSet</b> is initially created and put into session state there will be |
|
| A DropDownList, EditItemTemplate, using Access, and HttpSessionState...Part 4 |
| DotNetJunkies |
| In this article I will demonstrate how you
can save the changes made to the memory resident <b>DataSet</B>. |
|
| A Magical Edit Menu Manager |
| The Code Project |
| A magical edit menu that works with no connections to the rest of your project |
|
| A Meal Reminder in C# |
| C# Help |
|
|
| A Practical Guide to .NET DataTables, DataSets and DataGrids - Part 4 |
| The Code Project |
| The purpose of this document is to provide a practical guide to using Microsoft’s .NET DataTables, DataSets and DataGrid |
|
| A Simple ASP.NET Server Control: Message Box & Confirmation Box |
| The Code Project |
| An article on creating a simple ASP.NET server control that functions as Message Box and Confirmation Box |
|
| A Truly Excel-like Grid Control |
| MSDN |
| The ASP.NET DataGrid control generates an HTML output that really seems to be the Web counterpart of a Microsoft Excel worksheet. In addition, the control supports features like selection and in-place editing that can only further confirm this similarity. With in-place editing, in particular, the similarities are most clear. You click on a special type of command column and the grid redraws its content using text boxes rather than static text. At the same time, the command column changes the layout, replacing the edit link with two other links—one for saving and one for canceling changes. The overall design looks nearly identical to the Excel name box command bar. |
|
| Accessing DataGrid Information |
| DotNetJunkies |
| So many articles explain how to get data into a DataGrid, however this one will show you how to get data out. Luis will show how to read the contents of a particular column when the user selects an item. |
|
| Add Confirmation After Controls Validation on Client |
| http://aspalliance.com/ |
| Add a confirmation dialog to a web form after performing server control validation. |
|
| Adding a Blank Row to a DataGrid (Used to INSERT rather than UPDATE) |
| DotNetJunkies |
| In this article we will be illustrating one way to add a blank row to a DataGrid. Why would you want to do this? Who knows, maybe to enable a user to add a new record. This article will show you how to add a new row to a DataGrid by manipulating its DataSource - in this example a DataTable. Note that we will be simulating saving the new item back to the
database. |
|
| 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. |
|
| Alternative way to support Language under C# Framework |
| The Code Project |
| A suggestion to an alternative way to support Language under C# Framework |
|
| An Introductory Guide to Building and Deploying More Secure Sites with ASP.NET and IIS, Part 2 |
| MSDN |
| Forms authentication is one of the most compelling and useful new features of ASP.NET. It enables developers to declaratively specify which files on their site can be accessed and by whom, and allows identification of a login page. When an unauthenticated user attempts to retrieve a page protected by forms authentication, ASP.NET automatically redirects them to the login page and asks them to identify themselves. Included here is an overview of forms authentication and what you need to know to put it to work. Also included is hard-to-find information on the security of cookie authentication and on combining forms authentication with role-based URL authorizations. |
|
| An Overview of Web Browser Express |
| MSDN |
| Easily build your own Web browser that supports tabs and an integrated link to a search engine by using the C# Express WebBrowser control. |
|
| An RSS 2.0 Blog Reader Written In MyXaml |
| The Code Project |
| An RSS 2.0 Blog Reader Written in MyXaml |
|
| Application of the Cache Subsystem for Web Applications |
| C#Today |
| In this article, Eric Rhea explores two approaches to utilizing the caching system. First, he talks about how to make use of the cache subsystem from the web-form code. Then, he takes a look at exploring how to make use of the cache subsystem in the code behind. While doing this, he seeks three answers: (1) how to improve performance, (2) how to make use of similar techniques in both code areas, and (3) how to cache an object which is indeterminate in length and whose values you do not know in advance, and one which you cannot cache using the web-form directive. |
|
| Ask the DotNetJunkies: Editing with the ASP.NET DataGrid |
| DotNetJunkies |
| I have bound data to a datagrid, which has ID, name, address columns. But I want the key field (for example ID) as a href so that by clicking on the ID, I can take the user to another page where I can let him edit that record. - Sreedhar Reddy. This is a great question. The best part about it is that the ASP.NET DataGrid server control enables editing of records in a much easier fashion. |
|
| Ask the DotNetJunkies: How do I add a DropDownList to a DataGrid EditItemTemplate? |
| DotNetJunkies |
| I'm working with a DataGrid. When editing a row, I would like to have one
of my fields be a DropDownList. I would much rather be able to bind that DropDownList
to a table in a DataSet so when new key/values are setup in the database they
flow through to my aspx page without having to fuss with it. Please, example
in VB. |
|
| Ask the DotNetJunkies: Performance Impacts of Server Controls |
| DotNetJunkies |
| If the validation controls or intrinsic controls post the page back to the server, will it not affect the performance of the pages because huge files have to go back and forth from the client to the server? |
|
| Ask the DotNetJunkies: String Parsing For Fun |
| DotNetJunkies |
| The Question: How do I split a string that contains string values and numeric values into separate string and numeric? The Answer: Code in C# and Visual Basic .NET. |
|