Tuesday, April 17, 2012

Covert date from dd/MM/YYYY format to MM/dd/YYYY format in c#

DateTime S_dt = DateTime.ParseExact(txtStartDate.Text, "dd/MM/yyyy", null);

No comments:

SQL Optimization

  SQL Optimization  1. Add where on your query  2. If you remove some data after the data return then remove the remove condition in the sel...