First of all thank u very much for giving some solution.
Actual my moto is to save the datagridvalues in any file(.txt /.csv).
I have already able to save the data in .txt file by using the simple code mentioned below:
using (StreamWriter MyFile = new StreamWriter(Ap plication.Start upPath+"\\About File Log.txt"))
{
for (int i = 0; i < dataGridView1.R owCount; i++)...
Leave a comment: