Reading & Modifying data grid cell entries
-
Hi, I am trying to make a spreadsheet in asp.net wherein, the user can enter some data and I display results for one of my methods( say Average, Standard deviation etc,). Can anybody please guide me how I read data from spreadsheet at runtime & then pass these data as parameter to my methods. e.g public static double Sum( double [] data) { double sum =0.0; for(int i=0;i
-
Hi, I am trying to make a spreadsheet in asp.net wherein, the user can enter some data and I display results for one of my methods( say Average, Standard deviation etc,). Can anybody please guide me how I read data from spreadsheet at runtime & then pass these data as parameter to my methods. e.g public static double Sum( double [] data) { double sum =0.0; for(int i=0;i
-
you can edit like this, double d = 0; GridView1.Rows[0].Cells[1].Text = "22.7"; d = Convert.ToDouble( GridView1.Rows[0].Cells[1].Text); Now call sum function.