Some Queries of Begginers regarding Asp.Net(C#) and PHP are tries to solved by this blog..
Friday, 26 April 2013
Using DataList Insert,Update & Delete Data with SQLServer
DataList Manupulation
Insert, Update And Delete Using Datalist..
Introduction
DataList is used to display a repeated list of items like repeater control.
DataList provide data grouping and flexible layout as ListView but it does not
provide some feature like update, delete, paging, insert and sorting. It is
drawback of DataList.
DataList must define Several Optional templates can be used to customize the appearance of the list as per Following:-
AlternatingItemTemplate: If defined, provides the content and layout for alternating items in the DataList. If not defined, ItemTemplate is used.
EditItemTemplate:
If defined, provides the content and layout for the item currently
being edited in the DataList. If not defined, ItemTemplate is used.
FooterTemplate:
If defined, provides the content and layout for the footer section of
the DataList. If not defined, a footer section will not be displayed.
HeaderTemplate:
If defined, provides the content and layout for the header section of
the DataList. If not defined, a header section will not be displayed.
ItemTemplate: Required template that provides the content and layout for items in the DataList.
SelectedItemTemplate:
If defined, provides the content and layout for the currently selected
item in the DataList. If not defined, ItemTemplate is used.
SeparatorTemplate:
If defined, provides the content and layout for the separator between
items in the DataList. If not defined, a separator will not be
displayed.
No comments:
Post a Comment