Search - Articles
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Tuesday, March 03, 2009
Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home >Search > Articles & Samples > ASP.Net > Server Controls > DataList Control


Search:
What's New - What's Hot
Add Row to ASP .NET Listview at Clientside  Version: 0.00     Price: $0.00  
Total Hits: 1  |  Today: 0Author: .NET Development      Rating:  
Read Reviews | Write Review |  Your Rating: 

Point of Interest: Add row to ASP .NET Listview at client side.
Using…ASP .NET, C#, Visual Studio 2008, Listview Control, ASP .NET AJAX, JQuery, JSON, Serialization, Linq to Sql....

Sort Items of a BulletedList Control using jQuery  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Suprotim Agarwal      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article demonstrates how to sort the items of the BulletedList control and display the sorted list.
This article is a chapter from my EBook called 51 Recipes with jQuery and ASP.NET Controls. The chapter has been modified a little to publish it as an article....

A Much Easier to Use ListView  Version: 0.00     Price: $0.00  
Total Hits: 0  |  Today: 0Author: Phillip Piper      Rating:  
Read Reviews | Write Review |  Your Rating: 

[For those who noted that the above graphic lacks one of the fundamental requirements for an animation (namely animated-ness), CodeProject doesn't support animations within a page, so click here to see the actual animation.]...

Using HoverMenuExtender with ASP.NET ListView to Update, Delete and Insert Records  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Suprotim Agarwal      Rating:  
Read Reviews | Write Review |  Your Rating: 

The ListView control is a new data control available in ASP.NET 3.5 and is quiet similar to the GridView and Repeater control. The GridView uses row fields to display data, whereas the ListView control displays data using user-defined templates. Moreover ListView can edit and select data whereas Repeater cannot. ListView provides more flexibility in displaying data, in comparison to what the GridView and Repeater give....

Implementing Cascading DropDownList in ASP.NET GridView  Version: 0.00     Price: $0.00  
Total Hits: 7  |  Today: 0Author: Suprotim Agarwal      Rating:  
Read Reviews | Write Review |  Your Rating: 

I wrote this article sometime ago in response to a query asked by a dotnetcurry.com viewer. The user had a requirement where he had two dropdownlist in the GridView and the second one was to be populated at runtime based on the selected value of the first dropdownlist – A case of cascading dropdownlists....

Sorting ASP.NET DropDownList Using LINQ  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Malcolm Sheridan      Rating:  
Read Reviews | Write Review |  Your Rating: 

LINQ has been out since .Net 3.0 and it’s used to query in-memory data stores. I have been using LINQ for a while and I’m still amazed at how easy it is to perform tasks that otherwise would have required numerous lines of code to achieve the same result. Recently I was faced with a request on sorting items that were in an ASP.NET DropDownList control. It was not possible to order the data from the database, so I had to do this programmatically. My first thought was how can LINQ help me do this?...

Custom SEO friendly paging with ASP.NET Repeater or DataList control  Version: 0.00     Price: $0.00  
Total Hits: 10  |  Today: 0Author: SheoNarayan      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article gives A to Z solution to do SEO Friendly custom paging for ASP.NET Repeater and DataList controls that doesn't support paging out of box. To my experience this is one of the most efficient way of doing custom paging as this doesn't require you to keep ViewState of any of the controls enabled and one of the best thing is that it is SEO friendly so search engine like Google and Bing can crawl all records of the pages easily....

ASP.NET Multiple Selection DropDownList with AJAX HoverMenuExtender  Version: 0.00     Price: $0.00  
Total Hits: 21  |  Today: 0Author: Bryian Tan      Rating:  
Read Reviews | Write Review |  Your Rating: 

Recently, I was looking for a multiple selection dropdownlist control for my new project. After spending some time researching for it, I decided to put together all my finding in one web user control. This web user control consists of an ASP.NET AJAX HoverMenuExtender, JavaScript, StyleSheet and CheckBoxListExCtrl. The final product will work with or without a masterpage and you can drag and drop more than one instances of the control on to the page. This is not a perfect control, feel free to ...

TreeView/ListView object in COBOL.Net  Version: 0.00     Price: $0.00  
Total Hits: 10  |  Today: 0Author: Rick Malek      Rating:  
Read Reviews | Write Review |  Your Rating: 

Navigation around an environment is often one of the most overlooked portions of an application, yet it is one of the most critical aspects of any application. Being able to quickly and effortlessly move around and locate the items a user needs is one of the characteristics of a well defined application....

How to: Respond to Button Events in DataList or Repeater Items  Version: 0.00     Price: $0.00  
Total Hits: 21  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

If a DataList or Repeater control template includes Button, LinkButton, or ImageButton Web server controls, these buttons can send their Click events to the containing DataList or Repeater control. This enables you to include buttons for functions that are not already defined for the DataList control (edit, delete, update, and cancel) and to define functionality for the Repeater control....

ASP.Net DataList Data Binding using XmlDocument Dynamically     
Total Hits: 89  |  Today: 0Author: programming.top54u.com      Rating:  
Read Reviews | Write Review |  Your Rating: 

In the previous tutorial we learnt the dynamic way to bind the XML data to DataList control using XMLDataSource class object with C# code. Here we will discuss the XML data binding functionality of DataList control with the help of XmlDocument class object dynamically. In ASP.Net XmlDocument class provides the Load method that allows you to pass the path of XML file in the way as we passed the path to DataFile Property of XmlDataSource class object in the previous tutorial....

Advanced item filtering within CListCtrl     
Total Hits: 125  |  Today: 0Author: Dmitry Khudorozhkov      Rating:  
Read Reviews | Write Review |  Your Rating: 

Sometimes, you may have a task to filter information in your list control, i.e., to remove items that do not meet some criteria. Other times, it is useful not to remove items, but to see which items passed (and/or did not pass) the filter and why. The presented modification of CListCtrl allows you to easily apply various filters to report-style list views. The current code is limited to range filters (that is, filters specified by upper and lower bounds), but can be easily adopted to work with o...

Working with XML Data Using LINQ, a TreeView, and a ListView :: Editing Data     
Total Hits: 42  |  Today: 0Author: Miroslav Kadera      Rating:  
Read Reviews | Write Review |  Your Rating: 

ASP.NET includes a variety of tools for displaying and editing XML documents. A previous article, Working with XML Data Using LINQ, a TreeView, and a ListView :: Displaying Data, showed how with a TreeView control, a ListView control, an XmlDataSource control, a LinqDataSource control, and about 50 lines of code we could create a web page that displayed the contents of a hierarchical XML file. Specifically, the page displayed the contents from a fictional employee phonebook, which allowed for an...

Working with XML Data Using LINQ, a TreeView, and a ListView :: Displaying Data     
Total Hits: 45  |  Today: 0Author: Miroslav Kadera      Rating:  
Read Reviews | Write Review |  Your Rating: 

With more and more data being stored in XML, web applications today commonly need some way to view and edit the data stored in an XML file from a web page interface. If the XML data is relatively "flat" and tabular in nature, we can use data Web controls like the DataGrid, GridView, and Repeater. (See Quickly Editing XML Data for an example of editing XML data through a DataGrid control.) But what if the XML data is more hierarchical and in a less tabular format? Consider a company-wide phone bo...

Control Template in DataGrid, Repeater and DataList Controls     
Total Hits: 67  |  Today: 0Author: Bean Software      Rating:  
Read Reviews | Write Review |  Your Rating: 

A template is a combination of HTML elements, controls and embedded server controls, and can be used to customize and manipulate the layout of a control. ASP.NET provides three server controls for displaying data in a customized layout: Datagrid control, Repeater control, and Datalist control. The layout for these controls can be customized using templates. For example you can use a template to customize the layout of the individual rows. Alternating rows, or selected rows of control. At runtime...

AJAX IN ACTION (DropDownList Dependency)     
Total Hits: 123  |  Today: 0Author: AzamSharp      Rating:  
Read Reviews | Write Review |  Your Rating: 

In my last article AJAX IN ACTION I discussed some of the cool features of AJAX. In this article I will present that how you can make one DropDownList dependent on another DropDownList. Hence, when you change the item in the DropDownList the other DropDownList gets populated depending on the selection of the first DropDownList....

A Useful Generic Class Handling DropDownList, ListBox, CheckBoxList, RadioButtonList and BulletedList in ASP.NET 2.0     
Total Hits: 138  |  Today: 0Author: Tomz_KV      Rating:  
Read Reviews | Write Review |  Your Rating: 

It is a common and repetitive task in web application development that a developer has to bind data to a DropDownList, a ListBox, a CheckBoxList, a RadioButtonList or a BulletedList....

Paging in DataList     
Total Hits: 123  |  Today: 0Author: Jesudas Chinnathampi (Das)      Rating:  
Read Reviews | Write Review |  Your Rating: 

Today, we will learn how we can add the paging feature for the datalist. It should be noted that, like DataGrid, DataList does not support inbuilt paging mechanism. The essence of this article is how we make use of the object SqlDataAdapter. This object has a method called, Fill which is used to add or refresh the rows in a DataSet. Actually the method Fill is overloaded. We will be mainly concentrating the one which takes four arguments. The four arguments are DataSet, startRecord, maxRecords a...

Sorting Data in a DataList or Repeater Control     
Total Hits: 106  |  Today: 0Author: Scott Mitchell      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this tutorial we’ll examine how to include sorting support in the DataList and Repeater, as well as how to construct a DataList or Repeater whose data can be paged and sorted....

Custom Buttons in the DataList and Repeater     
Total Hits: 86  |  Today: 0Author: Scott Mitchell      Rating:  
Read Reviews | Write Review |  Your Rating: 

Throughout the past seventeen DataList and Repeater tutorials, we’ve created both read-only examples and editing and deleting examples. To facilitate editing and deleting capabilities within a DataList, we added buttons to the DataList’s ItemTemplate that, when clicked, caused a postback and raised a DataList event corresponding to the button’s CommandName property. For example, adding a button to the ItemTemplate with a CommandName property value of “Edit” causes the DataList’s EditCommand to f...


1  2  3  4  5  6  7  8  9  10  Next >> 


Disclaimer - Privacy
© 2002-2012 DevASP.net