0
我在執行下面的代碼中的問題,我創建一個電子郵件系統,我可以通過點擊一個GridView複選框選擇多個郵件。一旦我選擇了我想要的電子郵件並點擊發送按鈕,我收到以下錯誤ASP電子郵件客戶端錯誤,GridView的和複選框
索引超出範圍。必須是非負數且小於集合的大小。 參數名:指數
說明:在當前Web請求的執行過程中發生未處理的異常。請查看堆棧跟蹤以獲取有關該錯誤的更多信息以及源代碼的位置。
異常詳細信息:System.ArgumentOutOfRangeException:索引超出範圍。必須是非負數且小於集合的大小。 參數名:指數
這裏如下 我的代碼任何幫助表示讚賞
protected void send_Click(object sender, EventArgs e)
{
//Array list to hold selected email ids
ArrayList emailArray = new ArrayList();
//Looping through rows of GridView
foreach (GridViewRow item in GridView1.Rows)
{
//Creating checkbox object using the find control method
CheckBox cb = (CheckBox)item.Cells[1].FindControl("CheckBox1");
//CheckBox cb = (CheckBox)item.FindControl("CheckBox1");
//Checking whether checkbox is checked or not
if (cb.Checked)
{
//If checked Adding email id to Arraylist
emailArray.Add(GridView1.DataKeys[item.RowIndex]["email"].ToString());
}
}
//Looping through the email id list
foreach (string email in emailArray)
{
MailMessage msg = new MailMessage();
msg.From = new MailAddress("[email protected]");
msg.To.Add(email);
msg.Subject = subjecttext.Text;
msg.Body = TextBox1.Text;
SmtpClient smt = new SmtpClient("smtp.gmail.com", 587);
smt.Credentials = new System.Net.NetworkCredential("[email protected]", "xxxxxxxxx");
smt.EnableSsl = true;
smt.Send(msg);
//}
}
emailsent.Text = "Email has been sent Successfully";
}
}
<asp:GridView ID="GridView1" runat="server" Visible="true"
CssClass="mydatagrid" EmptyDataText="No Students Enrolled on this Module"
EmptyDataRowStyle-BorderWidth="0px" PagerStyle-CssClass="pager"
HeaderStyle-CssClass="header" RowStyle-CssClass="rows"
DataSourceID="displayemail">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:CheckBox ID="CheckBox1" runat="server" />
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="email" HeaderText="email" SortExpression="name" />
</Columns>
</asp:GridView>
你有沒有設置一個突破點並通過它?究竟在哪裏拋出錯誤? –
林很新的ASP所以不知道一個破發點是什麼,有錯誤拋出的觀點是emailArray.Add(GridView1.DataKeys [item.RowIndex] [「電子郵件」]的ToString()); –
您可以張貼在GridView標記? –