tags:

views:

21

answers:

2

I know this is simple as cake but I've been using ASP.NET controls for way too long. I assume you have to do this via javascript with a regular XHTML input tag?

A: 

You can simply call a javascript method that sets window.location

function redirect() {
  window.location = 'http://whatever...'
}
mamoo
+1  A: 

To redirect to a URL after selecting a radio button:

<input type="radio" name="myRadio" onclick="window.location.href='/my/desired/url.aspx';" />
Joe D