Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a vbs file having this code.


Option Explicit
Dim objIEA
Set objIEA = CreateObject("InternetExplorer.Application")
objIEA.Navigate "https://localhost/abc/RSSDigest/RSSDigest.php?frequency=weekly"
objIEA.visible = false
While objIEA.Busy
Wend
objIEA.Quit
Set objIEA = Nothing

in my php file. I have a redirect code written. Which redirects to the same file. Will the redirect happen if the vbs file is getting executed via cscript.exe

share|improve this question
What kind of code is the redirect written in? Is it JavaScript, VBScript, or HTML Meta Tag? – HK1 May 2 '12 at 10:31
the code is php redirect – sushil bharwani May 2 '12 at 10:32
Try making objIEA visible and see what happens. – HK1 May 2 '12 at 11:49
Don't do it this way. Use XMLHttpRequest, which follows 301 or 302 redirects automatically. – Cheeso Jun 26 '12 at 20:37

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.