希望這將是一個容易的嗎?我有一個VBS文件,我試圖每週安排一次XML刷新。它只是調用一個ASPX頁面。但我無法讓這個東西工作!即使當我嘗試雙擊VBS文件時,我也會收到一條錯誤消息。實際的代碼可以在整個地方找到 - 它似乎是爲此目的的標準代碼。windows任務計劃打開一個網頁 - vbs不工作
的代碼是(fetch.vbs)
Call LogEntry()
Sub LogEntry()
'Force the script to finish on an error.
On Error Resume Next
'Declare variables
Dim objRequest
Dim URL
Set objRequest = CreateObject("Microsoft.XMLHTTP")
'Put together the URL link appending the Variables.
URL = "http://mywebsite/fetchXML.aspx"
'Open the HTTP request and pass the URL to the objRequest object
objRequest.open "POST", URL , false
'Send the HTML Request
objRequest.Send
'Set the object to nothing
Set objRequest = Nothing
End Sub
的錯誤信息,我從窗戶弄(當我雙擊VBS文件)
Script: fetch.vbs
Line: 1
Char: 1
Error: Invalid Character
Code: 800A0408
Source: Microsoft VBScript Compilation Error
任何想法?
整理...這是因爲我還沒有保存爲ANSI(從這裏回答:http://stackoverflow.com/questions/2039104/vbscript-invalid-character-800a0408-compilation-error) –