请问高手:
asp。net发送邮件提示 未能访问CDO.Message对象
这是什么原因
-------------------------------------------------------------------------------------------------
我的代码:
using System.Web.Mail;
MailMessage objMailMessage;
// 创建邮件消息
objMailMessage = new MailMessage();
objMailMessage.from = "mysina@sina.com";//源邮件地址
objMailMessage.To = "scucj@126.com";//目的邮件地址,也就是发给我哈
objMailMessage.Subject = "邮件发送标题:你好";//发送邮件的标题
objMailMessage.Body = "邮件发送标内容:测试一下是否发送成功!";//发送邮件的内容
//基本权限
objMailMessage.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1");
//用户名
objMailMessage.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "mysina") ;
//密码
objMailMessage.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "chenjie");
SmtpMail.SmtpServer = "smtp.sina.com";
SmtpMail.Send( objMailMessage );
各位帮帮忙
http://topic.csdn.net/u/20091103/15/2c614ebe-09ac-4d95-80ba-9214b547ff8e.html?11471
select top 12 * from Product where [id] not in (select top 12 [id] from Product)
这样可以分页,但是我在后面想加个条件
select top 12 * from Product where [id] not in (select top 12 [id] from Prod ......