| Selecting a DropDownList Value Embedded in a DataGrid |
| DotNetJunkies |
| I'm creating a Web Form with a DataGrid for data entry using C#. How can I make a DataGrid cell display a DropDownList for showing list of products in all the rows ( for same column )? |
|
| Selecting a DropDownList Value Embedded in a DataGrid |
| DotNetJunkies |
| This How To shows you how to populate a DropDownList in a DataGrid row, and set the correct selected item. The sample code includes additional DataGrid features including ASC/DESC toggle column sorting - in both C# and Visual Basic .NET |
|
| Selecting a DropDownList Value with FindByValue() |
| DotNetJunkies |
| Question: How do I set the selected index in a DropDownList control based on knowing what the value of the control is? Answer: Use the FindByValue() method of the ListItemControlClass. |
|
| Selecting a DropDownList Value with FindByValue() |
| DotNetJunkies |
| "How do I set the SelectedIndex in a DropDownList control based on knowing what the selected value of the DropDownList control is? My DropDownList control may contain 10 text/value items. How do I cycle through the DropDownList control to see if the value of an item in the control is the same as the one I have stored in my database." |
|
| Selecting an Item in a DataList using C# |
| ASP Alliance |
| In this article, we will look at a technique that allows us to generate a DataGrid (children data) based on a selection in a DropDownList (parent data). Basically, when an item is selected in the DropDownList, the page is posted back and we run a query to fill the DataGrid. |
|
| Selecting Items With The DataGrid And DataList Controls |
| DotNetJunkies |
| In this article we'll be going over how to enable item selection using both the DataGrid and DataList. |
|
| Selecting, Confirming & Deleting Multiple Checkbox Items In A DataGrid (i.e. HotMail & Yahoo) |
| DotNetJunkies |
| In this article, we will examine how to create a fully functional DataGrid with all the features you'd find set up on Hotmail or Yahoo. As an added bonus we'll be performing all of our data tasks strictly utilizing Microsoft's new Data Access Application Block or DAAB v2. |
|
| Selecting, Confirming and Deleting Multiple DataGrid items in ASP.NET |
| http://aspalliance.com/ |
| Ever needed to use a DataGrid to select multiple items for deletion, with confirmation, like Hotmail does? This articles demonstrates how in a few simple steps using VB.NET. |
|
| Sending email from ASP.NET |
| ORCS Web |
| One of the most commonly performed operations that I see in webapplications - aside from database actions - is sending email from code. InActive Server Pages 3.0 and earlier, this task required the use of athird-party control such as ASPMail (from ServerObjects) or ASPEmail (fromPersits). Both of these COM objects work quite well, but they are no longerrequired when dealing with ASP.NET. |
|
| Sending Email In ASP.NET With Validation Controls |
| Egg Head Cafe |
| Because of the wide range of Base Classes available to the ASP.NET Framework, a number of typical tasks that normally would take the Classic ASP developer many lines of code now become very simple and easy to implement. One of these common tasks is sending email from the contents of form fields, and validation of the entries both for required fields and data type, such as a correctly formatted, valid email address. It is frequently desired to add an attachment from the user's local filesystem. Until ASP.NET, all this required third party controls that were messy, required COM registration, and often lots of nasty code...
|
|
| Sending SMS using .NET through a Web service |
| The Code Project |
| This article will help you to know how to use web services in .NET |
|
| Sending SMS using .Net through Web service |
| The Code Project |
| This article will help to know how to user web service in .NET. |
|
| Separating Datagrid Items |
| The Code Project |
| How to add a separator row to set off groups of similar data in an ASP.NET Datagrid |
|
| Serialization |
| C#Today |
| One of the most fundamental jobs for a piece of software is saving a document and loading it back up again. This process has become known as serialization, and .NET has strong support for this. In this article, Matthew Reynolds takes a look at how to save and load documents for a simple WinForms application. As part of the work, he introduces a reference implementation for properly handling the creating, saving and opening of documents as laid down by the Windows guidelines. |
|
| Setting Up Global Objects with the global.asax File |
| C# Help |
| ASP.NET uses a special file, called global.asax, to establish any global objects that your Web application uses. The .asax extension denotes an application file rather than .aspx for a page file. |
|
| Setting User Control Properties in Code Behind |
| DotNetJunkies |
| I'm trying to pass a value to a user control by setting a property. I'm using code behind. How do I pass a value to the user control? Answer: In code behind you have to create an instance of the user control, the same way you would for any server control. You map an instance of the user control's class the user control instance in the Web Form. |
|
| Shaped Forms |
| C# Corner |
|
|
| SharpListView |
| The Code Project |
| Fast and easy C# owner-drawn ListView |
|
| Showing DataGrid.SelectedItem in a Separate Web Form |
| DotNetJunkies |
| In this article, Xico explains how to show a list of items allowing the user to select some of them using a checkbox. He also explains how to show the user only the selected items, giving the user the opportunity to update those records. |
|
| Simple Business Object in VB.NET |
| DotNetJunkies |
| In the ever expanding quest for knowledge, I took it upon myself to convert Don Wolthuis'
excellent tutorial <a href="http://www.aspnextgen.com/tutorials.aspx?tutorialid=25">"Making Business Objects Has Never Been Easier!"</a> to VB.NET. After
completing the conversion and getting surpised by a few syntax conventions that may not
seem obvious to a VB developer, I decided to share this code with the rest of the Code
Junkies out there. I should say at this point that any errors you may find <i>(errors |
|
| Simple Code for a Common Footer |
| DotNetJunkies |
| In this article, Xico shows how to create a simple footer User Control that displays the last time the current page was changed. |
|
| Simple Code for a Common Footer |
| DotNetJunkies |
| Q. "I'm in need of some simple code for a common footer file. I would like to extract the current file's last modified date and write that to screen along with a date 12 months out." A. Most sites use the same footer in all of their pages. In this article, I'll show you how to create a simple footer User Control that displays the last time the current page was changed. |
|
| Simple Custom DataGrid |
| ASP Alliance |
| This code snippet demonstrates how to use the RowFilter property to create two different DataGrids from one DataSet. |
|
| Simple Data Binding using ADO.NET |
| DotNetJunkies |
| This short tutorial will describe the bare minimum things you need to do to bind to a database using C#, ADO.NET and ASP.NET. We will not be giving explinations on C#, this is a tutorial on databinding using ADO.NET. |
|
| Simple Game Developed in C# |
| C# Corner |
|
|