6
Answers

How To Read Text Value From Dynamic Html Table

Hi Every One

I am creating dynamic html table in each row second column I am putting link button and in first column I am putting the label in the text property of the label I am setting the serial number my question when any user click the link button I have to read associate serial number of that row

For example if user click on the link button from the third row then I have to read the serial number of that row

Why I need this number because the text which I am displaying is same in all rows I have send this link button text and serial number associated to this row

Does any body have any idea regarding this issue please help me?

 

Thanks in advances

Answers (6)
0
Javeed M Shaikh

Javeed M Shaikh

NA 7.8k 69.7k 11y
can you try to set some hard coded value like this:

timetablegrid.Rows[row].Cells[column].Value = "sample text";
0
darma teja

darma teja

NA 493 194.2k 11y
Hi,

gridView.Rows[1].Cells[1].Value= "text here";

Darma