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
2010-06-07 19:47:03
+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
2010-06-07 19:47:16