下午全部。
我有一个gridview,每行提供一行“反馈”列。
更新后,一个漂亮的小消息框说“感谢您的反馈,我们会联系......等等”
我如何抓取gridview的这一编辑行并将其发送到电子邮件地址?
任何帮助都非常感谢c#.net新手!
答案 0 :(得分:0)
我假设您在该行中有一个按钮,用于生成发送反馈的命令。您可以将按钮上的CommandArgument设置为“反馈”,然后在onRowCommand事件期间捕获它。
在页面的html侧添加onRowCommand事件:
<asp:GridView ID="GridView1" runat="server" OnRowCommand="myCommand">
</asp:GridView>
然后在后面的代码中添加事件:
protected void myCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandArgument == "feedback")
{
// Grab the row being edited, find the cell/control and get the text
}
}
答案 1 :(得分:0)
我实际上选择了以下有效的方法:
MailMessage feedbackmail = new MailMessage(
"joe.bloggs@joebloggsland.co.uk",
"joe.bloggs@joebloggsland.co.uk",
"Subject",
e.NewValues.Values.ToString());
SmtpClient client = new SmtpClient("SMTP");
try
{
client.Send(feedbackmail);
}
catch (Exception ex)
{
Console.WriteLine("Email unable to be sent at this time", ex.ToString());
}