Click here to Skip to main content
15,893,266 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I Have a Datagridview Call gvMasterData, It's contain data as follows
Type,Amount And Balance are columns

Type/ Amount/ Balance ----//this are three columns header

Cash 100 80
Card 450 300 // this two lines are values

I have a button called getvalue and
I want to pass "Cash" like parameter and want to get related row values

how can i do this requirement
Posted
Comments
RahulRana723 5-Dec-12 6:48am    
Show your Code

1 solution

Use The Following Code:
GridView1.Rows[e.RowIndex].columns[0].value;
On Your Event
 
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