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
The asp:ListView control (Part 1 - Building a Product Listing Page with Clean CSS UI)     
Total Hits: 209  |  Today: 0Author: Scott Guthrie      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this article, Scott examines how to build a product listing page using Cascading Style Sheets User Interface with the help of ListView control.
One of the new controls in ASP.NET 3.5 that I think will be very popular is the
asp:ListViewcontrol. The ListView control supports the data editing, insertion, deleting, paging and sorting semantics of higher-level controls like the GridView. But - unlike the GridView - it provides you with complete control over the html markup generated....

CodeSnip: Populate a DropDownList with a Stored Procedure     
Total Hits: 117  |  Today: 0Author: Steven Swafford      Rating:  
Read Reviews | Write Review |  Your Rating: 

This articles provides sample code that demonstrates a quick and simple method of populating a drop-down list via a stored procedure....

Adding Items to a Data-Bound DropDownList On The Fly in ASP.NET 2.0     
Total Hits: 175  |  Today: 0Author: John Peterson      Rating:  
Read Reviews | Write Review |  Your Rating: 

I recently received an email from a visitor that was having a hard time adding a new entry to a data-bound DropDownList. While it's not the simplest thing to do, if you're using ASP.NET 2.0 the amount of actual code that you need to write is negligible.

I'll be using Visual Web Developer 2005 Express as my working environment for the rest of this article. It's available as a free download from Microsoft. If you're looking for a development environment and haven't already checked it ou...

Ask the DotNetJunkies: DataList Paging     
Total Hits: 36  |  Today: 0Author: eric neff mcp      Rating:  
Read Reviews | Write Review |  Your Rating: 

The trick when using a DataList to page data is to think about where the paging occurs. Since the DataList does not support paging but does support being bound to a DataSet. If it were simple the story would end here. Unfortunately a DataSet does not support paging either. So what you need to do is make your DataSet a single page of data! This way you only retrieve the data you need for a single page....

ASP.NET Data Controls Part 3: DataList     
Total Hits: 107  |  Today: 0Author: Wei-Meng Lee      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this third part of the ASP.NET Data Controls series, I will talk about the DataList control. The DataList control is somewhat a combination of the DataGrid and Repeater controls. It works like the Repeater control, allowing you to create templates so that it can be bound to a data source. It also allows you to edit records, much like the DataGrid control....

User Control: Simplifies Database Lists     
Total Hits: 59  |  Today: 0Author: Charles Carroll      Rating:  
Read Reviews | Write Review |  Your Rating: 

This page demonstrates how to use a User Control to re-use some code that populates a data list....

An ASP.NET thumbnail solution     
Total Hits: 277  |  Today: 0Author: Philipos Sakellaropoulos      Rating:  
Read Reviews | Write Review |  Your Rating: 

Welcome to my first article in CodeProject! The picture above should give an idea of what the code i developed does. I started this project after reading the (very good) ASP.NET tutorials of the Framework SDK. The DataList control gave me the idea to make a user control to display thumbnails in grid format. In order to generate thumbnails 'on the fly' i made a C# class and a C# HTTP handler. Part of the solution (although optional) is an ATL COM thumbnail-generator object. I have added useful fe...

Creating Data-Enabled Web Pages using the DataList     
Total Hits: 243  |  Today: 0Author: Paul Kimmel      Rating:  
Read Reviews | Write Review |  Your Rating: 

ASP.NET provides a complement of server controls that make it easier to create advanced web applications. Three web controls that fall into this category are the Repeater, DataGrid, and DataList. This article demonstrates the fundamentals you need to know to describe the DataList, connect data to it, and support managing that data. Most of the code and techniques demonstrated can also be applied to the Repeater and DataGrid controls. When you've finished reading this article you'll know how to i...

DataList Web Server Control     
Total Hits: 1824  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

Details the ASP.NET syntax for the DataList Web server control. This control displays the items from a data source using templates. You can customize the appearance and contents of the control by manipulating the templates that make up the different components of the DataList control, such as the ItemTemplate and HeaderTemplate....

DetailsView in Asp.net  Version: 0.00     Price: $0.00  
Total Hits: 1  |  Today: 0Author: Dinkar chavhan      Rating:  
Read Reviews | Write Review |  Your Rating: 

The DetailsView control in ASP.Net 2.0 is used to create an HTML table that displays the contents of a single database record....

DataList Control which will build datalist as per your requirements...  Version: 0.00     Price: $0.00  
Total Hits: 0  |  Today: 0Author: JustChiragPatel      Rating:  
Read Reviews | Write Review |  Your Rating: 

This control will build a DataList control which is Dynamic and you can give Custome properties to it, Like you can select header CSS style, columns width, on which column you want to put sorting functionality and as per properties set you will find that a nice datalist will be displayed with hover effect on each rows, plus sorting functionality on desired columns....

Creating Dynamic DataList control in C#/ASP.Net  Version: 0.00     Price: $0.00  
Total Hits: 0  |  Today: 0Author: Satheesh babu      Rating:  
Read Reviews | Write Review |  Your Rating: 

In webapplications, one the most common task is displaying a table of data to users. In ASP.Net 1.x, we make use of the Datagrid, DataList and Repeater controls. Every time, the need of displaying the data will be different. Sometimes, we will require the data to be displayed to the user where he/she should have edit/update/delete functionalities or we require displaying the data with the header being displayed in the left as opposed to top which makes us to decide which of the above control to ...

Picasa Style Photo Album Using ListView Control in ASP.Net 3.5  Version: 0.00     Price: $0.00  
Total Hits: 1  |  Today: 0Author: Satheesh Babu      Rating:  
Read Reviews | Write Review |  Your Rating: 

ListView is a new databound control that is shipped with ASP.Net 3.5. Read my previous article - ListView Control in ASP.Net 3.5 which elaborates the usage of this new control. ListView control is one of the most flexible databound control that can be used to present the data in any custom format. Moving forward, in this article we will use this new control to create Google’s Picasa style photo album. Even though, picasa has more features we will implement only the display of albums and its ...

Edit, Update, Delete and Insert data with DataList control using LINQ  Version: 0.00     Price: $0.00  
Total Hits: 4  |  Today: 0Author: Satheesh Babu      Rating:  
Read Reviews | Write Review |  Your Rating: 

Often we will get requirements to perform edit, update, delete and insert operations over the data displayed using databound controls. Traditionally, we have been doing this using SQL procedure or SQL query with the support of the inbuilt events like edit, update and delete on the databound controls. With the introduction of LINQ, it is now possible to interact with the database using a new querying capability that has .net language syntax called LINQ query. This is done with the help of LINQ to...

Using GroupTemplate in ASP.Net ListView Control(Tiled Display  Version: 0.00     Price: $0.00  
Total Hits: 0  |  Today: 0Author: Satheesh Babu      Rating:  
Read Reviews | Write Review |  Your Rating: 

ListView is a new databound control that is shipped with ASP.Net 3.5. ListView control is a powerful control which can replace all the other data bound controls available now. Read my previous article ListView Control in ASP.Net 3.5 which discusses the basic usage of ListView control in ASP.Net....

CheckBox, CheckBoxList and DropDownList Controls in Asp.Net  Version: 0.00     Price: $0.00  
Total Hits: 1  |  Today: 0Author: Jitendra Sampathirao      Rating:  
Read Reviews | Write Review |  Your Rating: 

CheckBox and CheckBoxList are server controls in .Net.


Check boxes are an appropriate choice in situations where a radio button won't work. When deciding which control to use, when multiple selections are possible, we can use check boxes....

How to get the value of Textbox, CheckBoxlist, RadioButtonList, ListBox, DropDownList in javascript  Version: 0.00     Price: $0.00  
Total Hits: 3  |  Today: 0Author: Syedshakeer      Rating:  
Read Reviews | Write Review |  Your Rating: 

This Article explains you how to Raise Client Click Events for Server Controls...

Change Color of text, control through dropdown list in asp.net  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Poonam Verma      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this article you will learn how to change through dropdown list in asp.net...

Sorting in DropDown List in a simple way using Linq  Version: 0.00     Price: $0.00  
Total Hits: 0  |  Today: 0Author: Madhu K      Rating:  
Read Reviews | Write Review |  Your Rating: 

Sorting dropdown list can be easily done using Linq. In this post I am going to tell how you can sort the dropdown list based on DataTextField and DataValueField using Linq....

CRUD Operation using List View with XML Database  Version: 0.00     Price: $0.00  
Total Hits: 1  |  Today: 0Author: Raj Kumar      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article will describes how to user CRUD (Create, Read, Upadate, Delete) Operation using List View using XMl database in ASP.NET....


1  2  3  4  5  6  7  8  9  10  


Disclaimer - Privacy
© 2002-2012 DevASP.net