|
|
|
|
|
| | Total Hits: 1 | Today: 0 | Author: .NET Development | 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.... |
| | Total Hits: 2 | Today: 0 | Author: Suprotim Agarwal | 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.... |
| | Total Hits: 0 | Today: 0 | Author: Phillip Piper | 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.]... |
| | Total Hits: 2 | Today: 0 | Author: Suprotim Agarwal | 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.... |
| | Total Hits: 7 | Today: 0 | Author: Suprotim Agarwal | 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.... |
| | Total Hits: 2 | Today: 0 | Author: Malcolm Sheridan | 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?... |
| | Total Hits: 10 | Today: 0 | Author: SheoNarayan | 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.... |
| | Total Hits: 21 | Today: 0 | Author: Bryian Tan | 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 ... |
| | Total Hits: 10 | Today: 0 | Author: Rick Malek | 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.... |
| | Total Hits: 21 | Today: 0 | Author: Microsoft Corporation | 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.... |
| | Total Hits: 89 | Today: 0 | Author: programming.top54u.com | 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.... |
| | Total Hits: 125 | Today: 0 | Author: Dmitry Khudorozhkov | 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... |
| | Total Hits: 42 | Today: 0 | Author: Miroslav Kadera | 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... |
| | Total Hits: 45 | Today: 0 | Author: Miroslav Kadera | 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... |
| | Total Hits: 67 | Today: 0 | Author: Bean Software | 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... |
| | Total Hits: 123 | Today: 0 | Author: AzamSharp | 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.... |
| | Total Hits: 138 | Today: 0 | Author: Tomz_KV | 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.... |
| | Total Hits: 123 | Today: 0 | Author: Jesudas Chinnathampi (Das) | 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... |
| | Total Hits: 106 | Today: 0 | Author: Scott Mitchell | 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.... |
| | Total Hits: 86 | Today: 0 | Author: Scott Mitchell | 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... |
|
|
|
|
|
|
|
|
|
|
|
|
|