Click here to Skip to main content
15,893,486 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi friends
I want to pass textbox3.text to GridView1.Rows[2].Cells[3].Value

but value is not shown

what should i do?
Posted
Comments
JoCodes 6-Jan-14 0:40am    
Which event your are doing this?

1 solution

There is not property called Value use Text instead of it.

C#
GridView1.Rows[2].Cells[3].Text= TextBox3.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