c# - How can I open a different site in a new window from my page? -


i want open different website in new window when visits site. called 1 time per session.

how can implement this?

onload of body call window.open("your web url")

<body onload="window.open('your web url')"/> 

Comments