且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在电子邮件正文中发送数据库字段值

更新时间:2022-11-07 21:37:37

1。
var log = (from s in dx.s_events
                 where s.e_id == st
                 select new { s }).FirstOrDefault();



可能没有针对您身份的任何记录。



2.


there might not be any record available against the id you've.

2.

int st = Convert.ToInt16((Request.QueryString["e_id"]));



检查您是否在此处收到有效值。

3.


Check if you are receiving valid values here.
3.

mail.Body = log.s.e_name;



检查log.s是否为空。


Check if "log.s" is not null.