ASP Session & Object Value ความสามารถของ Session นอกจากจะเก็บค่า String แล้ว Session สามารถเก็บค่าของ Object ได้เช่นเดียวกันครับ
Syntax
Set myObject = Object
Session("Name") = myObject
ASPSessionObject.asp
<% Option Explicit %>
<html>
<head>
<title>ThaiCreate.Com ASP Session & Object</title>
</head>
<body>
<%
Dim myMail
Dim objMyMail
Set myMail = Server.CreateObject("CDONTS.NewMail")
Set Session("objMyMail") = myMail
Set myMail = Nothing
'*** Use Session ***'
Dim mySession
Set mySession = Session("objMyMail")
mySession.From = "[email protected]"
mySession.To = "[email protected]"
mySession.Subject = "My Subject"
mySession.Body = "My Body & My Description"
mySession.Send
Response.write ("Mail Sending.")
Set mySession = Nothing
'*** End Use Session ***'
%>
</body>
</html>