|
|
|
|
|
| | Total Hits: 209 | Today: 0 | Author: Scott Guthrie | 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.... |
| | Total Hits: 117 | Today: 0 | Author: Steven Swafford | Rating:  |
| |  This articles provides sample code that demonstrates a quick and simple method of populating a drop-down list via a stored procedure.... |
| | Total Hits: 175 | Today: 0 | Author: John Peterson | 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... |
| | Total Hits: 36 | Today: 0 | Author: eric neff mcp | 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.... |
| | Total Hits: 107 | Today: 0 | Author: Wei-Meng Lee | 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.... |
| | Total Hits: 59 | Today: 0 | Author: Charles Carroll | Rating:  |
| |  This page demonstrates how to use a User Control to re-use some code that populates a data list.... |
| | Total Hits: 277 | Today: 0 | Author: Philipos Sakellaropoulos | 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... |
| | Total Hits: 243 | Today: 0 | Author: Paul Kimmel | 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... |
| | Total Hits: 1824 | Today: 0 | | 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.... |
| | Total Hits: 1 | Today: 0 | Author: Dinkar chavhan | 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.... |
| | Total Hits: 0 | Today: 0 | Author: JustChiragPatel | 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.... |
| | Total Hits: 0 | Today: 0 | Author: Satheesh babu | 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 ... |
| | Total Hits: 1 | Today: 0 | Author: Satheesh Babu | 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 ... |
| | Total Hits: 4 | Today: 0 | Author: Satheesh Babu | 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... |
| | Total Hits: 0 | Today: 0 | Author: Satheesh Babu | 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.... |
| | Total Hits: 1 | Today: 0 | Author: Jitendra Sampathirao | 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.... |
| | Total Hits: 3 | Today: 0 | Author: Syedshakeer | Rating:  |
| |  This Article explains you how to Raise Client Click Events for Server Controls... |
| | Total Hits: 2 | Today: 0 | Author: Poonam Verma | Rating:  |
| |  In this article you will learn how to change through dropdown list in asp.net... |
| | Total Hits: 0 | Today: 0 | Author: Madhu K | 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.... |
| | Total Hits: 1 | Today: 0 | Author: Raj Kumar | Rating:  |
| |  This article will describes how to user CRUD (Create, Read, Upadate, Delete) Operation using List View using XMl database in ASP.NET.... |
|
|
|
|
|
|
|
|
|
|
|
|
|