please exaplain gridview and what are the process available
for it. how to add the row number automatically? is it
possible to add child controls ?
Answers were Sorted based on User's Feedback
Answer / subodh kumar
Gridview is a control provided in .net2.0 and above.
Gridview is use to display the records in tabular format.
To fill the record in Gridview control we will use the
following two properties:
1. Gridview1.DataSource=<DataSet or any other datasource>
2. Gridview1.Databinding();
Gridview supports the functionality to add, edit, or delete
the record.
It also suports pagination functionality.
It have the following events which are very usefull:
1. OnDatabind
2. OnItemCommand
3. OnIndexChange
etc.
You can add the child control in Gridview and you can
handle that event through Gridview event handle
i.e. "OnItemCommand". This process is called "Bubble event".
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / siva
The above said is write. With addition to that To add the
row number automatically See the below code.
<asp:TemplateField HeaderText="S.No">
<ItemTemplate >
<%# Container.DataItemIndex + 1 %>
</ItemTemplate>
</asp:TemplateField>
| Is This Answer Correct ? | 1 Yes | 0 No |
Which of these string definitions will prevent escaping on backslashes in c#?
How do you create multiple inheritance in C#?
5 Answers Infosys, KenIndia, Microsoft,
Which is the best institute in hyderabad to learn Sharepoint Portal?
Can you declare a class or a struct as constant?
What is different between Static Constructor and Private Constructor?
What is .cs file in c#?
What do u mean by thread safe?
What does out mean in c#?
an object,class is value type or refarance type. ?
what is the difference between int and Int32?
Why do we need serialization?
What are the types in c#?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)