itemtemplate
我一直在尝试绑定我的 GridView中存在的下拉列表。但它给了我上面所说的“索引 1 是负数或高于行数”的错误。
我的 GridView 包含约 100 行,我想将每个下拉列表与特定数据绑定。错误发生在onRowDataBoundEvent
并且异常(由调试工具)在GridBinding
将 GridView 与主数据绑定的方法处输出。
这是代码:
if (e.Row.RowType == DataControlRowType.DataRow)
{
try
{
DropDownList _ddtpcs = (DropDownList)e.Row.Cells[4].FindControl("_ddtsttpc");
if (_ddtstsubs.SelectedIndex != 0 && _ddtstsubs.SelectedIndex != -1)
{
if (_ddtpcs != null)
{
_ddtpcs.DataSource = _adl.LoadTopics(long.Parse(_ddtstsubs.SelectedValue));
_ddtpcs.DataTextField = "top_nm";
_ddtpcs.DataValueField = "top_id";
_ddtpcs.DataBind();
_ddtpcs.Items.Insert(0, new ListItem("Select", "0"));
}
}
}
catch (Exception ex)
{
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "message", POPUPBuilder.ShowPopUpMsg(ex.ToString()), true);
}
}
这是网格绑定的代码:
_grdqans.DataSource = _adl.LoadQans(long.Parse(_hdntstId.Value));
_grdqans.DataBind();
GridView 中的下拉列表为:
<ItemTemplate>
<asp:DropDownList ID="_ddtsttpc" runat="server">
</asp:DropDownList>
</ItemTemplate>
LoadTopics 方法
internal object LoadTopics(long _subId)
{
try
{
cmd = new SqlCommand("sp_LoadTopics", con.getconnection());
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@subId", _subId);
da = new SqlDataAdapter(cmd);
dt.Clear();
da.Fill(dt);
cmd.Parameters.Clear();
cmd.Connection.Close();
cmd.Dispose();
//da.Dispose();
return dt;
}
catch (Exception ex)
{
throw ex;
}
finally
{
con.closeconnection();
}
}
我在这里做错了什么?