将数据添加到GridView

将数据添加到GridView

本文介绍了将数据添加到GridView的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好!

我正在尝试向GridView动态添加数据,但我遇到了错误:


异常详细信息:System.IndexOutOfRangeException:位置1没有行.
源错误:

第69行:drow = dt.NewRow();
第70行:dt.Rows.Add(drow);
第71行:dt.Rows [i] [col1] = i.ToString();
第72行:vol_dobanda =(float.Parse(credit.ToString())* rata_lunara * i)/100;
第73行:dt.Rows [i] [col2] = vol_dobanda.ToString();

我做错了什么?

Hello!

I am trying to add a data dynamiclly to my GridView but I''m geeting an error:


Exception Details: System.IndexOutOfRangeException: There is no row at position 1.
Source Error:

Line 69: drow = dt.NewRow();
Line 70: dt.Rows.Add(drow);
Line 71: dt.Rows[i][col1] = i.ToString();
Line 72: vol_dobanda = (float.Parse(credit.ToString()) * rata_lunara * i) / 100;
Line 73: dt.Rows[i][col2] = vol_dobanda.ToString();

What did I do wrong ?
Thanks in advance!

推荐答案



这篇关于将数据添加到GridView的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-23 20:44