vbscript - How to redirect a person to a website after prompting? -


i want redirect person when clicks "yes" on

x=msgbox("message description",4+16,"title")  

after he/she clicks "yes" redirected www.google.com, , if click "no" .vbs exit.

this me alot

you try this

 x = msgbox ("blah blah", vbyesno, "title")     if x = vbyes         location.href = "www.google.com"     end if 

Comments

Popular posts from this blog

css - Which browser returns the correct result for getBoundingClientRect of an SVG element? -

gcc - Calling fftR4() in c from assembly -

Function that returns a formatted array in VBA -