主頁(yè) > 知識(shí)庫(kù) > 通過(guò)RadioButton對(duì)DataList控件進(jìn)行單選實(shí)例說(shuō)明

通過(guò)RadioButton對(duì)DataList控件進(jìn)行單選實(shí)例說(shuō)明

熱門(mén)標(biāo)簽:百度ai地圖標(biāo)注 同安公安400電話怎么申請(qǐng)流程 預(yù)測(cè)式外呼系統(tǒng)使用說(shuō)明 申請(qǐng)400電話手續(xù) 蘋(píng)果手機(jī)凱立德地圖標(biāo)注 電話機(jī)器人軟件銷售工作 合肥電銷外呼系統(tǒng)哪家公司做的好 南陽(yáng)外呼系統(tǒng)定制化 玉林市機(jī)器人外呼系統(tǒng)哪家好
本例實(shí)現(xiàn)通過(guò)RadioButton對(duì)DataList控件進(jìn)行單選。你可以參考下面演示。
 
準(zhǔn)備好一個(gè)星座對(duì)象,并定義好一個(gè)泛型List來(lái)存儲(chǔ)每一個(gè)星座名稱。
復(fù)制代碼 代碼如下:

Constelltion.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
/// summary>
/// Summary description for Constellation
/// /summary>
namespace Insus.NET
{
public class Constellation
{
private int _ID;
private string _Name;
public int ID
{
get { return _ID; }
set { _ID = value; }
}
public string Name
{
get { return _Name; }
set { _Name = value; }
}
public Constellation()
{
//
// TODO: Add constructor logic here
//
}
public Constellation(int id, string name)
{
this._ID = id;
this._Name = name;
}
public ListConstellation> GetConstellation()
{
ListConstellation> constellation = new ListConstellation>();
Constellation c = new Constellation(1, " 白羊座");
constellation.Add(c);
c = new Constellation(2, "金牛座");
constellation.Add(c);
c = new Constellation(3, "雙子座");
constellation.Add(c);
c = new Constellation(4, "巨蟹座");
constellation.Add(c);
c = new Constellation(5, "獅子座");
constellation.Add(c);
c = new Constellation(6, "處女座");
constellation.Add(c);
c = new Constellation(7, "天秤座 ");
constellation.Add(c);
c = new Constellation(8, "天蝎座");
constellation.Add(c);
c = new Constellation(9, "射手座");
constellation.Add(c);
c = new Constellation(10, "摩羯座");
constellation.Add(c);
c = new Constellation(11, "水瓶座");
constellation.Add(c);
c = new Constellation(12, "雙魚(yú)座");
constellation.Add(c);
return constellation;
}
}
}

在.aspx拉一個(gè)DataList控件,把RadioButton置于DataList的ItemTemplate模版內(nèi)。
復(fù)制代碼 代碼如下:

asp:DataList ID="DataListConstellation" runat="server" Width="100" CellPadding="0" CellSpacing="0">
ItemStyle BorderWidth="1" />
ItemTemplate>
table>
tr>
td>
asp:RadioButton ID="RadioButtonSelect" runat="server" onclick="SelectedRadio(this);" />/td>
td>%# Eval("ID") %>/td>
td>%# Eval("Name") %>/td>
/tr>
/table>
/ItemTemplate>
/asp:DataList>

在.aspx.cs內(nèi)為DataList控件綁定數(shù)據(jù)
復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Insus.NET;
public partial class _Default : System.Web.UI.Page
{
Constellation objConstellation = new Constellation();
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
Data_Binding();
}
private void Data_Binding()
{
this.DataListConstellation.DataSource = objConstellation.GetConstellation();
this.DataListConstellation.DataBind();
}
}

最后,我們寫(xiě)一段Javascript來(lái)實(shí)現(xiàn)onclick事件
復(fù)制代碼 代碼如下:

script type="text/javascript">
function SelectedRadio(rb) {
var gv = document.getElementById("%=DataListConstellation.ClientID%>");
var rbs = gv.getElementsByTagName("input");
var row = rb.parentNode.parentNode;
for (var i = 0; i rbs.length; i++) {
if (rbs[i].type == "radio") {
if (rbs[i].checked rbs[i] != rb) {
rbs[i].checked = false;
break;
}
}
}
}
/script>
您可能感興趣的文章:
  • 獲取DataList控件的主鍵和索引實(shí)用圖解
  • 動(dòng)態(tài)加載用戶控件至DataList并為用戶控件賦值實(shí)例演示
  • Datalist控件使用存儲(chǔ)過(guò)程來(lái)分頁(yè)實(shí)現(xiàn)代碼
  • asp.net datalist 用法
  • DataList中TextBox onfocus調(diào)用后臺(tái)void靜態(tài)方法及獲取相應(yīng)行數(shù)

標(biāo)簽:臺(tái)州 海南 南京 淄博 揚(yáng)州 南京 南昌 嘉興

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《通過(guò)RadioButton對(duì)DataList控件進(jìn)行單選實(shí)例說(shuō)明》,本文關(guān)鍵詞  通過(guò),RadioButton,對(duì),DataList,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《通過(guò)RadioButton對(duì)DataList控件進(jìn)行單選實(shí)例說(shuō)明》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于通過(guò)RadioButton對(duì)DataList控件進(jìn)行單選實(shí)例說(shuō)明的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章