Error Type:
Microsoft VBScript runtime (0x800A0005)
Invalid procedure call or argument
/main.asp, line 290
Browser Type:
Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
Page:
GET /main.asp
Time:
14 มิถุนายน 2548, 16:47:11
More information:
Microsoft Support
ส่วนตัวโปรแกรม จะขึ้น line ตรง
rs.update
ถ้าใช้ฐานข้อมูล
ถ้าใช้ Text file จะขึ้น ตรงคำสั่งการเขียนข้อมูลลงใน Text file นะครับ
Tag : - - - -
Date :
14 มิ.ย. 2548 16:57:35
By :
pone
View :
2728
Reply :
1
No. 1
Guest
Code (ASP)
<% Option Explicit %>
<html>
<head>
<title>ThaiCreate.Com ASP TextStream Object</title>
</head>
<body>
<%
Dim objFSO, objStream,i
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
Set objStream = objFSO.CreateTextFile(Server.MapPath("MyFiles/thaicreate.txt"),true)
objStream.WriteLine("I Love ThaiCreate")
objStream.WriteLine("I Love My Live")
Response.write("Writing")
objStream.Close
Set objStream = Nothing
Set objFSO = Nothing
%>
</body>
</html>