My code to create a CSV file that contains Danish characters
Response.ClearContent();
Response.AddHeader("content-disposition", attachment);
Response.ContentType = "application/csv;charset=utf-8";
Response.Charset = "utf-8";
Response.Write(sb.ToString());
Response.End();
Don't know why but when result CSV is created danish characters are replaced with some special characters like ??j
.Can any one give me any clue?