hi,
I have the code working below but it does not take of commas in the CSV file?
rotected void Button2_Click(object sender, EventArgs e)
{
string urlparam = HttpContext.Current.Request.Url.AbsoluteUri;
StreamReader sr = null;
DataTable dt = new DataTable();
DataRow dr;
string column1 = "";
string column2 = "";
string column3 = "";
string column4 = "";
string column5 = "";
string ...
Go to the complete details ...