我不会RadioButton服务器控件,谁能帮我改下呢? 20
完整代码如下,有网友建议使用RadioButton服务器控件:********************************************Sorry!我写错了...
完整代码如下,有网友建议使用RadioButton服务器控件:********************************************
Sorry!我写错了,是RadioButton ,不是RadioBox
我的意思是:
看到你代码中radio标记的value是用服务器代码取得的,而且还要传递值回服务器,并不是完全在客户端工作。
所以,直接放上一个RadioButton服务器控件,设置为AutoPostBack,在CheckedChanged事件中编写cmd.CommandText = "yponguou"
cmd.Execute,array(a,name) 等代码。
利用事件机制,才是ASP.NET的风格。
但我不会改,谁能帮我改下呢?
select han
Case "qqload"
good()
fuction good()
dim name
name = request.form("dao_name")
response.write ("<script>alert('" + name + "')</script>")
cmd.CommandText = "yponguou"
cmd.Execute,array(a,name)
end function
<body><form method="post" action="本页面">
<td><Input Type="radio" name="dao_name" value="<%=daotu%>" onclick="alert(this.value);></td>
<tr><td><input type="submit" name="han" value="qqload" > : <input type="text" name="a"> </td></tr></form></body>
一楼你真热心多谢 我的思路是这样 先从服务器读取value="<%=daotu%>" 作为radio的值 当单选后把选取的值传送到fuction good() 做处理,cmd.CommandText = "yponguou" cmd.Execute,array(a,name) 这是执行yponguou存储过程,把选种的value和另外一个变量一起传送到服务器端做处理 展开
Sorry!我写错了,是RadioButton ,不是RadioBox
我的意思是:
看到你代码中radio标记的value是用服务器代码取得的,而且还要传递值回服务器,并不是完全在客户端工作。
所以,直接放上一个RadioButton服务器控件,设置为AutoPostBack,在CheckedChanged事件中编写cmd.CommandText = "yponguou"
cmd.Execute,array(a,name) 等代码。
利用事件机制,才是ASP.NET的风格。
但我不会改,谁能帮我改下呢?
select han
Case "qqload"
good()
fuction good()
dim name
name = request.form("dao_name")
response.write ("<script>alert('" + name + "')</script>")
cmd.CommandText = "yponguou"
cmd.Execute,array(a,name)
end function
<body><form method="post" action="本页面">
<td><Input Type="radio" name="dao_name" value="<%=daotu%>" onclick="alert(this.value);></td>
<tr><td><input type="submit" name="han" value="qqload" > : <input type="text" name="a"> </td></tr></form></body>
一楼你真热心多谢 我的思路是这样 先从服务器读取value="<%=daotu%>" 作为radio的值 当单选后把选取的值传送到fuction good() 做处理,cmd.CommandText = "yponguou" cmd.Execute,array(a,name) 这是执行yponguou存储过程,把选种的value和另外一个变量一起传送到服务器端做处理 展开
1个回答
展开全部
就是我.
但你的代码不完整。又看了一遍,按照上面的代码,
在aspx页面放一个RadioButton控件,设置其AutoPostBack属性为true,双击事件中的CheckChanged事件,在委托函数中写:
cmd.CommandText = "yponguou";
cmd.CommandType=CommandType.StoredProcedure;
cmd.ExecuteNonQuery();
......
************
除非整个的网页,否则没法做
han是什么?
array(a,name)中的a又是什么?
存储过程有没有返回值或输出参数?
如果只要大体意思,上面已经够了。
但你的代码不完整。又看了一遍,按照上面的代码,
在aspx页面放一个RadioButton控件,设置其AutoPostBack属性为true,双击事件中的CheckChanged事件,在委托函数中写:
cmd.CommandText = "yponguou";
cmd.CommandType=CommandType.StoredProcedure;
cmd.ExecuteNonQuery();
......
************
除非整个的网页,否则没法做
han是什么?
array(a,name)中的a又是什么?
存储过程有没有返回值或输出参数?
如果只要大体意思,上面已经够了。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询