textbox.asp

来自「在线邮件列表抓取与发送系统SQL版」· ASP 代码 · 共 50 行

ASP
50
字号
<!--#include file="Conn_mail.asp"-->
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style>
td{font-size:9pt;line-height:160%} 
body{font-size:9pt;line-height:160%} 
a:link       { color: #0033CC; text-decoration: none }
a:visited    { color: #0033CC; text-decoration: none }
a:hover      { color: #000000; text-decoration: underline}
</style>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<%
dim Makking,ID
Makking = Trim(Request.QueryString("Makking"))
ID      = Trim(Request.QueryString("ID"))

select case Makking

Case ""

		Response.Write body


Case "MailSend"

	IF ID <> "" and IsNumeric(ID) Then
		Set Rs = Conn_m.Execute("Select * From SendInfo Where ID = "& ID &"")
			IF Not Rs.eof Then
			body  = Trim(Rs("MailContent"))
			End IF
			Rs.Close
		Set Rs = Nothing
	Else
		
			body    = ""
			
	End IF
			Response.Write body

end select

Conn_m.Close
Set Conn_m = Nothing
%>

</body>
</html>

⌨️ 快捷键说明

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