Search - Articles - Dev Forums - Favorites - Member Login  
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Thursday, September 09, 2010

Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

Build the right apps the right way with powerful development tools.
Visual Studio 2010. Learn more...

Home > Search > Articles & Samples > ASP.Net > Server Controls > DataList Control
Search:
What's New - What's Hot


Some Common Operations using List string - Part I    Version: 0.00       Price: $0.00   
Total Hits: 1  |  Today: 0 Author: Suprotim Agarwal       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this article and the next one, I will demonstrate some common operations on List string using LINQ. I assume that you are familiar with LINQ....

Popup Master-Detail using GridView, DetailsView and JQuery with jqModal        
Total Hits: 326  |  Today: 0 Author: Muhammad Mosa       Rating:  
Read Reviews | Write Review |   Your Rating: 

Last month Matt Berseth posted very good post about how to build Master-Detail with the GridView, DetailsView and ModalPopup Controls. Today I'm going to clone his post and build the same feature using jQuery with jQuery Plugins; one for popup windows jqModal& and the other is for Color Animation. You can view a demo of this sample here [View Demo]....

ASP.NET GridView Filtering with DropDownList        
Total Hits: 293  |  Today: 0 Author: Yuri Kasan       Rating:  
Read Reviews | Write Review |   Your Rating: 

The purpose of this article to demonstrate data filtering in GridView using DropDownList embedded in GridView column HeaderTemplate....

Smart ListControl in ASP.NET 1.x/2.0        
Total Hits: 84  |  Today: 1 Author: Bilal Haidar       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this article Bilal Haidar shows you how to make any ListControl that ships with ASP.NET 1.x/2.0 a smart control by making those controls preserve the client-side changes on their collection of items....

A DropDownList, EditItemTemplate, using Access, and HttpSessionState...Part 3        
Total Hits: 158  |  Today: 0 Author: Donny Mack       Rating:  
Read Reviews | Write Review |   Your Rating: 

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 DataSet into session state. We will not only be populating the DataGrid and DropDownList controls from this DataSet, but we will also be saving all the edits done by the user. This means that after the DataSet is initially created and put into session state there will be no further calls to t...

DataList vs. DataGrid in ASP.NET        
Total Hits: 195  |  Today: 0 Author: George Shepherd       Rating:  
Read Reviews | Write Review |   Your Rating: 

In my last column (September 2001) I looked at ASP standard server-side controls and showed how they simplify Web-based server-side UI by helping you manage the HTML that ends up on the client machine using programmatic abstractions (the server-side control classes for HTMLControls and WebControls). 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...

Building trees from lists in .NET        
Total Hits: 66  |  Today: 0 Author: Daniel Flower       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article is aimed at .NET developers who need to build a tree (or forest) of objects by loading an array or list of rows from a database, and converting them to a tree structure in memory to use or display....

DropDownList Inside The GridView Method 2        
Total Hits: 198  |  Today: 0 Author: AzamSharp       Rating:  
Read Reviews | Write Review |   Your Rating: 

This is the second installment of the article, DropDownList Inside the GridView. In the previous article DropDownList Inside the GridView I talked about how you can populate the DropDownList inside the GridView with different data using a DataSet. In this article I will demonstrate that how you can achieve the same behavior using Entity Classes....

DropDownList Dependencies Using Client Callbacks        
Total Hits: 270  |  Today: 0 Author: AzamSharp       Rating:  
Read Reviews | Write Review |   Your Rating: 

In the last article Client Callbacks in ASP.NET 2.0 I introduced the concept of remote scripting in ASP.NET 2.0. This article takes one step further and set up a real world problem and solves that problem by using Client Callbacks. This article focus on DropDownList dependencies. Consider a situation that you display a list of categories to the user and on user selection you populate another DropDownList (child list). This is a basic scenario when you select a category from a DropDownList and wa...

Selection of controls b/w RadioButton and RadioButtonList        
Total Hits: 146  |  Today: 0 Author: Handshakeit       Rating:  
Read Reviews | Write Review |   Your Rating: 

There are two ways to show a radio button on you site
1 RadioButtonList Control
2 Radiobutton Control
The RadioButtonList control is used to create a group of radio buttons.however it has some limitations
it can be populated from database only frm a single column field. however many times we need to populate radiobuttons from moer than one columns. now we need to use Radiobuttons saperatly
for this RadioButton has a property Groupname...

DataGrid and DropDownLists        
Total Hits: 190  |  Today: 0 Author: aspalliance       Rating:  
Read Reviews | Write Review |   Your Rating: 

DropDownLists are very useful controls which can be used to accept input from users. This control can be better used, if we know the range for the input. User feels more comfortable with DropDownLists (combo boxes) rather than textbox, since keyboard should be used to provide input to the latter. In this article, we will see how can we use a dropdownlist inside a datagrid. We will take the table, "stores" which is available under the database pubs (SqlServer 2000)....

Populating Related Drop Down Lists With AJAX        
Total Hits: 263  |  Today: 0 Author: Rob Meade       Rating:  
Read Reviews | Write Review |   Your Rating: 

Prior to ASP.Net the way we would add related drop down lists was by creating arrays in JavaScript and writing them out to the page. Due to the size and nature of the organization I work for (the NHS in the UK) these arrays could be considerable in size and typically made the page bloated.

For me JavaScript arrays always meant large amounts of data being written to the page. The majority of the data would be unnecessary for the bulk of users. Tabs and carriage returns in the JavaScript wo...

Building a Type-Ahead Dropdown Control        
Total Hits: 187  |  Today: 0 Author: Michael Libby       Rating:  
Read Reviews | Write Review |   Your Rating: 

The ASP.NET DropDownList control does not offer type-ahead functionality. Often users have to scan through hundreds of items before making a selection. This article shows how to easily implement type-ahead functionality in a dropdown that will be a hit with your users....

DualList Drag & Drop Component        
Total Hits: 171  |  Today: 0 Author: Fons Sonnemans       Rating:  
Read Reviews | Write Review |   Your Rating: 

I have written an article two years ago with the title 'WinForm DualList Component'. In this article I mentioned the desire to extend the DualList component with Drag & Drop support. Finally it's done. Not by extending the original DualList component but by creating an new DualListDragDrop component (reason: cohesion)....

Selecting Items With The DataGrid And DataList Controls        
Total Hits: 106  |  Today: 0 Author: Donny Mack       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this article we'll be going over how to enable item selection using both the DataGrid and DataList. If you have played around with editing with the DataGrid or DataList then the concepts discussed in this article should not be to foreign to you. If you haven't played around with editing yet do not worry I will be discussing the events used to enable item selection using the two controls....

Selecting a DropDownList Value with FindByValue()        
Total Hits: 216  |  Today: 0 Author: Doug Seven       Rating:  
Read Reviews | Write Review |   Your Rating: 

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....

Creating a rich HTML dropdown list (including images) with EasyListBox        
Total Hits: 282  |  Today: 0 Author: Peter Brunone       Rating:  
Read Reviews | Write Review |   Your Rating: 

This example shows how to generate a standard dropdown list that makes use of custom styling and HTML items... including images.
Image tags can be added right in with the text, whether the values come from hard-coded ListItems (as shown in this example) or from database fields....

Build an RSS DataList Control in ASP.NET        
Total Hits: 178  |  Today: 0 Author: Philip Miseldine       Rating:  
Read Reviews | Write Review |   Your Rating: 

RSS is finally getting the recognition it deserves. SitePoint now publishes RSS, and large news agencies like the BBC, the New York Times and CNN also publish RSS feeds. Now, developers can integrate content from a wide range of producers within their own applications, giving users a greater incentive to return, and opening up new possibilities for application development....

A Small Data Class        
Total Hits: 330  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

This is a small code sample to demonstrate how simply you can create an array and use it as the DataSource for a ListBox control. More than that though, I'd like you to pay close attention to the small Class called ListData that serves as a Data Class. I saw a Class similar to this one used in an example on MSDN, and, because I can never find anything twice on MSDN, thought that I'd better document it here on ShowUsYourCode....

Data Transfer between two ASP.NET ListBox Controls        
Total Hits: 269  |  Today: 0 Author: Dipal Choksi       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this example we will create a sample Web form that allows the user to select from a list. The user selections are transferred to another list. This is a very simple program and provides a very convenient user interface for selections. This form of selection is very commonly used in Windows applications....


1  2  3  4  5  6  7  8  9  10  11  12  13  14  15  16  17  18  Next >> 

DevASP.Net - Disclaimer - Privacy
© 2002-2010 DevASP.net