ASP.NET:插入 Gridview 行后发送电子邮件

发布于 2024-12-08 03:46:22 字数 1206 浏览 1 评论 0原文

我有一张这样的两张桌子;

Table Name: PROSPECT // Columns --> (CUSTOMER, YAT_ADET, FILO)

Table Name: TEMSILCI // Columns --> (CUSTOMER, MAIL)

基本上,当我插入 PROSPECT 表的 Gridview 3 数据时,我想向 CUSTOMER 发送电子邮件。但是 TEMSILCI 表中的邮件地址数据。因此,在插入行后,我应该获取客户的邮件地址。

我的 SqlDataSource 的 InsertCommand 是;

InsertCommand="INSERT INTO PROSPECT(CUSTOMER, YAT_ADET, FILO) VALUES (@CUSTOMER, @YAT_ADET, @FILO)"

我认为,我的场景应该;

  1. 获取插入到 Gridview 中的 CUSTOMER 值。
  2. 使用类似 SELECT MAIL FROM TEMSILCI WHERE CUSTOMER = 'Inserted CUSTOMER' 的查询执行并获取邮件地址。
  3. 之后,将邮件地址应用到我已经编写的 SendMail() 函数中。

我正在考虑使用 RowInserted 事件。

protected void ASPxGridView1_RowInserted(object sender, DevExpress.Web.Data.ASPxDataInsertedEventArgs e)
    {

    }

但是我该如何准确执行步骤 12AND,如何以编程方式获取 SqlDataSource Inserted 参数的值?

I have a two table like this;

Table Name: PROSPECT // Columns --> (CUSTOMER, YAT_ADET, FILO)

Table Name: TEMSILCI // Columns --> (CUSTOMER, MAIL)

Basicly, When I Inserted to Gridview 3 data for PROSPECT table, I want to send an e-mail to CUSTOMER. But Mail address data in TEMSILCI table. So, I should get, after the row inserted, CUSTOMER's mail address.

My SqlDataSource's InsertCommand is;

InsertCommand="INSERT INTO PROSPECT(CUSTOMER, YAT_ADET, FILO) VALUES (@CUSTOMER, @YAT_ADET, @FILO)"

I think, my scenario should;

  1. Get the CUSTOMER value which inserted to Gridview.
  2. Execute and get mail address with query like SELECT MAIL FROM TEMSILCI WHERE CUSTOMER = 'Inserted CUSTOMER'
  3. After that, apply mail address to my already written SendMail() function.

I'm thinking to use RowInserted Event.

protected void ASPxGridView1_RowInserted(object sender, DevExpress.Web.Data.ASPxDataInsertedEventArgs e)
    {

    }

But how can I exactly do step 1 and 2 ? AND, How can I get SqlDataSource Inserted parameter's value programmatically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暖心男生 2024-12-15 03:46:22

您可以通过 SCOPE_IDENTITY / @@IDENTITY 运行并合并所需的电子邮件消息。请参阅 DevExpress 支持中的 http://www.devexpress.com/issue=Q299244 讨论中心。希望这有帮助。

You can capture the newly inserted data record's ID via the SCOPE_IDENTITY / @@IDENTITY function and combine a required email message. Refer to the http://www.devexpress.com/issue=Q299244 discussion in the DevExpress support center. Hope this helps.

握住我的手 2024-12-15 03:46:22

我找到了解决方案

protected void SqlDataSource11_Inserted(object sender, SqlDataSourceStatusEventArgs e)
    {
      string yatplan = cmd.Parameters["@YAT_PLAN"].Value.ToString();
    }

此代码将 YAT_PLAN 列的值插入到 ASPxGridview 中。

I found the solution

protected void SqlDataSource11_Inserted(object sender, SqlDataSourceStatusEventArgs e)
    {
      string yatplan = cmd.Parameters["@YAT_PLAN"].Value.ToString();
    }

This code getting inserted value of YAT_PLAN column to ASPxGridview.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文