ASP Function Non arguments คือรูปแบบ Function ที่ไม่มีarguments ภายใน Function และไม่สามารถนำค่าตัวแปรที่ต้องการส่งเข้าไปใน Function ได้ แต่อย่างไร Function ก็ยังสามารถเรียกค่าตัวแปร Session หรือตัวแปร Global ได้ครับ
Syntax
Function name()
[statements]
[name = expression]
[Exit Function]
[statements]
[name = expression] End Function
AspFunctionNonArgument.asp
<% Option Explicit %>
<html>
<head>
<title>ThaiCreate.Com ASP Function</title>
</head>
<body>
<%
Dim strTime
Function DateTimeNow()
Response.write Date
DateTimeNow = Time
End Function
strTime = DateTimeNow()
Response.write("<br>strTime="&strTime)
%>
</body>
</html>
จากตัวอย่างจะเห็นได้ว่า Function DateTimeNow ไม่มี Argument แต่อย่างใด โดยภายใน Function ได้ทำการแสดงค่า Date ออกมาในทันที และภายใน Function ก็ยังทำการ Return ค่า Time กลับมาด้วยครับ Screenshot