Posted on: 10/6/2014 8:14:15 AM | Views : 382

this is not working...how can i do?
select firstname+" "+lastname as CustName  from cust_table

i want to display firstname and lastname together
label1.Text = reader["CustName"].ToString();
_____________________________________________________________
select firstname,lastname from cust_table

i want to display firstname and lastname together
label1.Text = reader["firstname+lastname "].ToString();

Go to the complete details ...