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
Post a Comment