TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
sandeep kodepaka
NA
106
210k
select all the checkbox in agridview
Dec 23 2010 5:16 AM
Hi frnz
how can i select all the checkboxes in agridview
<
asp
:
GridView
ID
="gvApplicable"
runat
="server"
AutoGenerateColumns
="False"
AllowSorting
="True"
AllowPaging
="True"
PageSize
="15"
onrowediting
="gvApplicable_RowEditing"
onpageindexchanging
="gvApplicable_PageIndexChanging"
Height
="127px"
onselectedindexchanged
="gvApplicable_SelectedIndexChanged"
Width
="213px"
>
<
Columns
>
<
asp
:
TemplateField
>
HeaderTemplate
>
<
asp:CheckBox
ID
="chkSelectAll"
runat
="server"
AutoPostBack
="true"
OnCheckedChanged
="chkSelectAll_CheckedChanged"
/>
</
HeaderTemplate
>
<
ItemTemplate
>
<
asp
:
CheckBox
ID
="Chk1"
runat
="server"
/>
</
ItemTemplate
>
</
asp
:
TemplateField
>
<
asp
:
BoundField
ReadOnly
="true"
DataField
="DeptCode"
HeaderText
="Code"
InsertVisible
="false"
SortExpression
="Code"></
asp
:
BoundField
>
<
asp
:
BoundField
ReadOnly
="true"
DataField
="DeptName"
HeaderText
="DeparmentName"
InsertVisible
="false"
SortExpression
="Name"></
asp
:
BoundField
>
</
Columns
>
</
asp
:
GridView
>
Reply
Answers (
4
)
no proper display of button
paging datalist without postbac