word-wrap: break-word;
word-break: break-all;
說明:
1. word-wrap: 超過寬度時是否要換行
2. word-break: 斷字的方法
以上語法適用於div、td、body、p...等
Call OpenURL()
Sub OpenURL()
'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://url?par1=value"
'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