有请高手:怎么把在客户端用脚本给服务器控件赋值?

2025-01-21 02:56:11
推荐回答(2个)
回答1:

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="";
}

回答2:

用服务器端radio控件,服务器端判断一下就行,脚本引用服务器端控件比较麻烦