How to keep export excel date format irrespect to region settings in vb.net
i have an requirement.need to keep export excel date format dd-MMM-yyyy format in export excel .its asp.net web application here is the codevSheet.Rows(vRowIndex + 2).Cells(vColumnIndex).Value = DateTime.ParseExact(vCellText, "dd-MMM-yyyy", CultureInfo.InvariantCulture)
i am getting the expected format on my local machine. when i deploy the same in server the date format changing to dd-mm-yyyy
any idea how to keep date format should not read region settings while exporting excel