function CHECKED(obj)
{
if(obj=='1')
{
location.href="当前页面.aspx?o=1";
return false;
}
else
{
location.href="当前页面.aspx?o=2";
return false;
}
}
然后在Page_Load()中
if(request.queryString["o"]!=null&&request.queryString["o"].toString()=="1")
{
this.textBox1.text="";
}
if(request.queryString["o"]!=null&&request.queryString["o"].toString()=="2")
{
this.textBox2.text="";
}
用服务器端radio控件,服务器端判断一下就行,脚本引用服务器端控件比较麻烦