Hi,
How to get contents for
because didn't show codes in page source.
Thanks.
How to get contents for
Code:
<div id="ajax_div"></div>
Thanks.
Code:
<html>
<head></head>
<body>
<div id="normal_div">contents..</div>
<div id="ajax_div"></div>
</body>
</html>
Code:
Dim objWshShell,IE,searchStr
Set objWshShell = Wscript.CreateObject("Wscript.Shell")
Set IE = CreateObject("InternetExplorer.Application")
With IE
.Visible = true
.Navigate "http://site"
Do While .Busy
WScript.Sleep 100
Loop
.....
.....
End With