Fetch Date into Databse and Display All The Details Of Yhis Date.
But Problem Date Format : dd/MM/yyyy
Eample:
SqlDataAdapter da = new SqlDataAdapter("select * from customer3 where Date= '"+txtdate.Text+"'", con);
Datatable dt=new Datatable;
da.Fill(dt);
Description:
txtdate.text input date are not match in database How this problem are solved
plz.