Click here to Skip to main content
16,020,990 members
Please Sign up or sign in to vote.
1.00/5 (4 votes)
See more:
how to load the grid column in the text box in web applications using c#
Posted

You'll need a little more information than this to ask a good question.

There is a wealth of information at http://www.asp.net/get-started[^], including your choice of technology to start (Pages/Forms/MVC), all of which allow setting values using c# or client-side technologies (like JavaScript or libraries such as jQuery).

Best of luck.
 
Share this answer
 
Your question kinda sucks the way it's presented. there's no info that will help us to accurately help you, but...

C#
GridView grid = sender as GridView;
string text = grid.Rows[rowIndex].Cells[columnIndex].Text;
textBox.Text = text;
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900