例外'指数超出范围'

时间:2013-03-10 07:20:08

标签: asp.net

在我的代码中,我有一个CheckboxList,我动态添加它的项目!我想要的是保存文本,但只能从会话中的选中 CheckBox中保存,因为我将在下一个表单中使用它!

所以我想制作一些文字,如你所见,我保存了名为myche的列表中选中复选框的文字,但是当我按下按钮查看此列表的第一项时 - 此代码lblProba.Text = myche[0];给了我一个例外'指数超出范围'。看来我的清单是空的。

public partial class FormEGN : System.Web.UI.Page
{
    string mynewstring;
   //List<List<string>> mycheckedList = new List<List<string>>();
    List<string> myche = new List<string>();
    CheckBoxList mycheckbox = new CheckBoxList();
    protected void Page_Load(object sender, EventArgs e)
    {
        mynewstring = (string)Session["id2"];


        if(!IsPostBack)
        {
            ddlNumberTourists.Items.Add("1");
            ddlNumberTourists.Items.Add("2");
            ddlNumberTourists.Items.Add("3");
        }
    }

    protected void btnProba_Click(object sender, EventArgs e)
    {
        lblProba.Text = myche[0];
    }

    protected void btnReserve_Click(object sender, EventArgs e)
    { 
        string num =Request.QueryString["ExcursionID"];
        Response.Redirect(String.Format("ClintsInformation.aspx?Excursiondate_ID={0}",num));

    }

    protected void ddlNumberTourists_SelectedIndexChanged(object sender, EventArgs e)
    {

        int numTourists = Convert.ToInt32(ddlNumberTourists.SelectedItem.Text);
        for (int i = 0; i < numTourists; i++)
        {

            Label myLabel = new Label();
            myLabel.ID = "lblAccomodation" + (i + 1).ToString();
            myLabel.Text = "Настаняване Турист" + (i + 1).ToString();
            Page.FindControl("form1").Controls.Add(myLabel);
            DropDownList myDropDownList = new DropDownList();
            myDropDownList.ID = "ddlTourist" + i.ToString();
            Page.FindControl("form1").Controls.Add(myDropDownList);
            Page.FindControl("form1").Controls.Add(new LiteralControl("<br />"));

            string connectionString = "Server=localhost\\SQLEXPRESS;Database=EXCURSIONSDATABASE;Trusted_Connection=true";
            string query =
      "SELECT Extra_Charge_ID, Excursion_ID, Amout, Extra_Charge_Description FROM EXTRA_CHARGES WHERE Excursion_ID=" + mynewstring;
            SqlConnection conn = new SqlConnection(connectionString);
            SqlCommand cmd = new SqlCommand(query, conn);

            try
            {
                conn.Open();
                SqlDataReader rd = cmd.ExecuteReader();
                int s = 0;

                while (rd.Read())
                {
                    mycheckbox.ID = "chkblextracharge" + i.ToString() + s.ToString();
                    mycheckbox.Items.Add(rd["Extra_Charge_Description"].ToString());
                    Page.FindControl("form1").Controls.Add(mycheckbox);

                    if (mycheckbox.Items[s].Selected == true)
                    {  
                        myche.Add(mycheckbox.Items[s].Text);
                    }
                    s++;
                }

            }//End of try

            catch (Exception ex)
            { }
            Session["chk"] = myche;

        }//end of for
    }
}

2 个答案:

答案 0 :(得分:0)

在使用myche

之前,请检查lblProba.Text = myche[0]是否为空

答案 1 :(得分:0)

问题是,当触发按钮点击事件处理程序时,myche中没有任何项目。

您实际任何项目添加到列表中的唯一位置是ddlNumberTourists_SelectedIndexChanged。这个事件处理程序在回发时调用,因此myche为空。

如果您希望在回发之间保留myche,则需要在视图状态中存储和加载try { //something } catch (Exception ex) { } 的值。

如果您想了解如何使其正常运行,我建议您阅读ASP.NET page life cycle以及TRULY Understanding ViewState


关于风格的说明:

{{1}}

可怕的做法 - 如果抛出异常,你永远不会知道它。