字符串数组到数据流数组
本文关键字:数组 数据流 字符串 | 更新日期: 2023-09-27 17:49:41
我想把数组的字符串赋值给一个数据数组
我的代码如下
protected void btnGenerate_Click(object sender, EventArgs e)
{
DataRow[] dRow;
foreach (GridViewRow grRow in grdACH.Rows)
{
CheckBox chkItem = (CheckBox)grRow.FindControl("checkRec");
if (chkItem.Checked)
{
chkItm = true;
chkcnt++;
strBankTypeID += ((Label)grRow.FindControl("lblBankType")).Text.ToString();
strBnkArray = strBankTypeID.Split(',');
foreach (string str in strBnkArray)
{
//Here i have to assign my string of array to datarow
}
}
}
}
有人能帮我吗
您将需要设置GridViewRow.DataItem