how we can capture the value in textbox when
selectedvluechanged event of gridview is fired
Answer / m.suresh
TextBox1.Text = GridView.SelectedRow.Cells[1].Text.ToString
();
TextBox2.Text = GridView.SelectedRow.Cells[2].Text.ToString
();
| Is This Answer Correct ? | 1 Yes | 1 No |
What is the purpose of enumerable class in .net?
What is the difference between VB and VB.NET?
Explain what is a manifest in .net?
Interop Services?
What is Global Assembly Cache (GAC) and what is the purpose of it?
Which Security Algorithm used to encrypt the data? a) DES b)RC2 c)Triple DES d)All the above
why you wouldn't want to write into it even if you could
If I am writing in a language like vb or c++, what are the procedures to be followed to support .net?
Usually in .net, the clr takes care of memory management. Is there any need for a programmer to explicitly release memory and resources? If yes, why and how?
What is singleton activation mode in .net?
Does .net supports destructors concept?
The project which you have made, which methodology did you use?