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 ...