How to get values in two text boxes from single column
How to get values in two text boxes from single column code is what?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jaganathan BantheswaranPosted Jan 10, 2014, 8:20 AM
Angel PrincessPosted Jan 10, 2014, 6:16 AM
Jaganathan BantheswaranPosted Jan 10, 2014, 6:11 AM
address1,address2. or separated by space like address1 address2
then get the value from db and split it by the separator like , or space.
var values = cellValue.Split(',');
address1.Text = values[0];
address2.Text = values[1];
Angel PrincessPosted Jan 10, 2014, 5:51 AM
Satyapriya NayakPosted Jan 10, 2014, 5:43 AM
Please elaborate it more.