Guys i am unable to convert datetime to \"dd-MMM-yyyy\" format. My code is given below:
TreeNode tn = new TreeNode(dr[\"pBillDate\"].ToString()); // He
Try this code:
string formattedDate = YourDate.ToString("dd MMM yyyy");
It will format to like:
12 Nov 2012