ASP

本类阅读TOP10

·asp常用数据库连接方法和技巧
·无组件生成BMP验证码
·一些常用的辅助代码 (网络收藏)
·JavaScript实现的数据表格:冻结列、调整列宽和客户端排序
·VisualStudio.NET_2003及其 MSDN 下载地址
·ASP模拟MVC模式编程
·图片以二进制流输出到网页
·MD5加密算法 ASP版
·ASP.NET编程中的十大技巧
·改进 ASP 的字符串处理性能

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
RadioButtonList在Datagrid模板列中的应用

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

1.RadioButtonList插入DataGrid模板列的方法与其他控件插入的方法一致。

2.从数据库中读取RadioButtonList状态的方法
    1) .aspx文件
         <asp:RadioButtonList .... SelectedIndex='<%# Container.DataItem(”strRBL”) %>'>

     2) .vb文件
         objDataSet.Tables(0).Columns.Add(“strRBL“)
         objDataSet.Tables(0).Rows(x).Item(“strRBL“)=n

3.RadioButtonList状态改变后读取的方法
   1).aspx文件
       <asp:RadioButtonList.... AutoPostBack=“True“  OnSelectedIndexChanged=“RBL_SelectedIndexChanged“

   2).vb文件
       Public Sub RBL_WA_SelectedIndexChanged(ByVal Sender As Object, ByVal e As System.EventArgs)
             Dim srcRBL As RadioButtonList = CType(Sender, RadioButtonList)
             Dim srcCell As TableCell = CType(srcRBL.Parent, TableCell)
             Dim srcRow As TableRow = CType(srcCell.Parent, TableRow)
       End Sub

       srcRBL即为状态改变的RadioButtonList,可用SelectedIndex/SelectedValue获取相应值
       srcRow即位状态改变的RadioButtonList所在的DataGrid行,可用srcRow.Cells(n).Text获取相应的主键值将RadioButtonList状态写入数据库

<%# Container.DataItem("strType") %>


相关文章

相关软件