|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
大家可以自己去看一看.可以说看得想呕吐.以前有次下了个动网来看.里面连基本内置函数的保护措施(函数没防御性)都没有.难怪经常补这个补那个了.可能现在.NET版会好点吧这个木鸟之前实验过,但没乐成,最初改成http毗连图片,看看你能乐成不,乐成了记得告知人人
1<HTML>
2
3<bodybgcolor=white>
4
5<%
6
7ifrequest.ServerVariables("REQUEST_METHOD")="GET"then
8
9%>
10
11<formaction="htmlemail.asp"method=post>
12<fontface=verdana>
13YourName<inputtype="text"name="strName">YourEMail<inputtype="text"name="strEmail">
14<br>
15RecipientEmail<inputtype="text"name="strTo">
16<p>
17
18<textareacols=40rows=4name=message>Yourmessage</textarea>
19
20</p>
21
22<inputtype=submitname=sendvalue=Send>
23
24</form>
25
26<%
27
28else
29
30SetobjMail=Server.CreateObject("CDONTS.NewMail")
31objMail.Importance=1
32objMail.From=request("strName")&"<"&request("strEmail")&">"
33objMail.To=request("strTo")
34objMail.Subject="ExampleofHTMLEMailwithEmbededImage"
35
36thisismymessagesHTML
37strMsg=""&_
38"<html><bodybgcolor=red>"&_
39"<ahref="""_>http://www.RealWorldASP.com/""><imgsrc=""http://www.webjx.com/htmldata/2005-05-05/http://www.webjx.com/htmldata/2005-05-05/logo.gif""border=0alt=""RealWorldASP"">"&_
40"</a><p><fontface=verdana>ExampleofaHTMLEmailwithembeddedImage<P><br>"&_
41request("message")&_
42"</body></html>"
43
44Settheformatoftheemailtohtml,etc
45objMail.BodyFormat=0
46objMail.MailFormat=0
47objMail.Body=strMsg
48
49attachourimagefileandSettheurltosimplyhttp://www.webjx.com/htmldata/2005-05-05/http://www.webjx.com/htmldata/2005-05-05/logo.gif
50objMail.AttachURLserver.MapPath("http://www.webjx.com/htmldata/2005-05-05/http://www.webjx.com/htmldata/2005-05-05/logo.gif"),"http://www.webjx.com/htmldata/2005-05-05/http://www.webjx.com/htmldata/2005-05-05/logo.gif"
51objMail.Send
52
53destroytheemailobject
54SetobjMail=Nothing
55
56%>
57<h1>
58<fontface=verdana>MessageSent,Thanks!</font>
59</h1>
60
61<%endif%>SQLServer是基于服务器端的中型的数据库,可以适合大容量数据的应用,在功能上管理上也要比Access要强得多。在处理海量数据的效率,后台开发的灵活性,可扩展性等方面强大。 |
|