I have a csv text file that I want to remove all Quotation Marks like this "
Thank You
Dim myString As String = File.ReadAllText(Path.Combine(Request.PhysicalApplicationPath, "Data\NYSE.csv"))
myString = myString.Replace(""", "")
Literal1.Text = myString
Go to the complete details ...