sendattachment.aspx

来自「asp.net技术内幕的书配源码」· ASPX 代码 · 共 21 行

ASPX
21
字号
<%@ Import Namespace="System.Web.Mail" %>
<%
Dim objMailMessage As MailMessage
Dim objMailAttachment As MailAttachment

' Create the Mail Attachment
objMailAttachment = New MailAttachment( "c:\BizPlan.doc" )

' Create the Mail Message
objMailMessage = New MailMessage
objMailMessage.From = "you@somewhere.com"
objMailMessage.To = "joe@somewhere.com"
objMailMessage.Subject = "Secret Business Plan"
objMailMessage.Body = "Here's the plan (don't show it to anyone!)"
objMailMessage.Attachments.Add( objMailAttachment )

' Send the Mail Message
SmtpMail.Send( objMailMessage )
%>

BizPlan Sent!

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?