Click here to Skip to main content
15,889,345 members

Comments by sathya4260 (Top 23 by date)

sathya4260 20-Sep-11 7:03am View    
Ex: Mark1,Mark2 are columns and rows are students mark, if there are 25 students, first ten students mark1,mark2 are displayed in col1,col2 and
for next ten students mark1,mark2 two new columns are added as col3,col4 this goes on,, till how many students are there...
sathya4260 13-Sep-11 6:00am View    
Did there is no developers to clarify my doubt,
sathya4260 12-Sep-11 10:19am View    
i can't able to get "Response" in my code as i am working on windows application
sathya4260 31-Mar-11 10:00am View    
Its good to see,I need to get only the row value at where the checkbox checked event is happen that is: after loading the datalist, if i click any one checkbox from the list, i need to get that row value and do some calculation and then again bind the datalist,
sathya4260 31-Mar-11 8:58am View    
hi i need to get the only the checked event column value
int count = dl.Items.Count;
for (int i = 0; i < count; i++) {
Label ID = dl.Items[i].FindControl("lblID") as Label;
string item = ID.Text;
}

Here as per ur advice we can use condition to get the checked value, but i need only the row by which the checked event happen?