Hi ALL
I have a SQL Server table customer which has fields regarding details of customer.
I added one column IsCorporate of data type bit with Default(0).
Now on the form that gets all details of customer there i have an checkbox
"Is Coprorate".
I tried the following way to insert in the query.
Code:
insert into customer (IsCorporate) VAlues (+((chkCorporate.Checked==true)?1:0)+);
on executing this Query there is no response from the server.
What could be the problem?
Vivek Shah