how we can capture the value in textbox when
selectedvluechanged event of gridview is fired



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

Post New Answer

More Dot Net General Interview Questions

How to Create and Consume a Web Service?

1 Answers  


What is the difference between override and overload in a method?

0 Answers  


What are the advantages of .net core?

0 Answers  


What is lazy initialization?

0 Answers  


What is common type system (cts)?

0 Answers  






Explain what is the difference between encrypting a password and applying a hashing?

0 Answers  


How to implement CAS in .Net?

0 Answers   247Customer,


State the methods used during deserialization and serialization process.

2 Answers  


Explain why do we use the “using” statement?

0 Answers  


What are the drawbacks for Model-View-Controller Architecture?

1 Answers  


Name the classes that are introduced in the system.numerics namespace.

0 Answers  


How do you create threading in .NET? What is the namespace for that?

2 Answers  


Categories