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

Admob integration with pygame in android -

Function that returns a formatted array in VBA -

python - performance - finding all points within certain distance by lat/long -