易截截图软件、单文件、免安装、纯绿色、仅160KB

ASP.Net 2.0 发送邮件的代码

这两天因为要做一个可以收集用户提交信息,然后发送邮件到指定邮箱的网页。在 asp.net 2.0 里面发送邮件可以使用 System.Net.Mail 下面的类。http://www.systemnetmail.com/faq/2.1.aspx 这个地址有 System.Net.Mail 的作者写的仿佛是 MSDN 类似的 Faq,看代码的时候可以参考以下。什么都不说了,下面贴出来代码吧,毕竟代码是最重要的:     
 1protected void btnSend_Click(object sender, EventArgs e)
 2        {
 3            MailMessage mailMessage = new MailMessage();
 4            string strBody;
 5
 6            mailMessage.from = new MailAddress("XX@gmail.com");
 7            mailMessage.To.Add("XXX@gmail.com");
 8            mailMessage.Subject = "月儿";
 9
10            strBody = "<h2>" + ddlMainTag.SelectedItem.Text + "</h2><br>";
11            strBody += "<h4>" + tbTag.Text + "</h4><br><hr><br>";
12            strBody += "·" + tbAdv.Text;
13
14            sendMail(mailMessage);
15        }
16
17        //SendMail
18        private void sendMail(MailMessage mail)
19        {
20            SmtpClient smtpClient = new SmtpClient();
21            smtpClient.EnableSsl = true;
2


相关文档:

什么是Asp.Net应用程序

ASP.NET defines an application as the sum of all files, pages, handlers, modules, and executable code that can be invoked or run in the scope of a given virtual directory (and its subdirectories) on a Web application server. For example, an "order" application might be published in the "/order" virt ......

Asp.net 使用 AXAJ局部刷新无效的解决方法

<httpHandlers>
<remove verb="*" path="*.asmx"/>
<!--
<add verb="*" path="*.asmx" validate="false" type="Microsoft.Web.Script.Services.ScriptHandlerFactory, Microsoft.Web.Extensions, Version=1.0.61025.0 ......

asp.net文件和文件夹压缩

法一:调用winrar
using Microsoft.Win32;
using System.Diagnostics;
protected void Button1_Click(object sender, EventArgs e)
    {
        RAR(@"E:\95413594531\GIS", "tmptest", @"E:\95413594531\");
    }
    /// ......

ASP.NET防止重复提交的Javascript脚本

function _doPostBack(){};
if(typeof("__doPostBack")=="function")
{
_doPostBack=__doPostBack;
__doPostBack=_doPostBackNew;
}
document.attachEvent("onmousemove",_onmousemove);
var _isPosting=false;
var _divMask=null;
function _onmousemove()
{
if(_divMask)
with(_divMask.runtimeStyle)
......

ASP.NET在本地服务器上创建目录并在该目录下写文件

public static Boolean WriteTextFile(string content, string filepath,string name)
{
FileStream fs;
StreamWriter sw;
if (!System.IO.Directory.Exists(filepath))
{
DirectoryInfo DirInfo = Directory.CreateDirectory(filepath); //创建目录
DirI ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号