麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 編程 > .NET > 正文

ASP.NET中RadioButtonList綁定后臺數據后觸發點擊事件

2024-07-10 13:30:29
字體:
來源:轉載
供稿:網友
這篇文章主要介紹了ASP.NET中RadioButtonList綁定后臺數據后觸發點擊事件的相關資料,感興趣的小伙伴們可以參考一下
 

本文實例為大家分享了RadioButtonList綁定后臺數據,觸發點擊事件的方法

首先前臺頁面放置一個RadioButtonList 控件

<asp:RadioButtonList runat="server" ID="RadioButtonList1" BorderStyle="None" RepeatColumns="3" CssClass=""      RepeatLayout="Flow" AutoPostBack="true" OnSelectedIndexChanged="RadioButtonList1_SelectedIndexChanged">    </asp:RadioButtonList>

.cs文件 后臺綁定數據

namespace BTApp{ public partial class Technology : System.Web.UI.Page {  string Id;  protected void Page_Load(object sender, EventArgs e)  {   if (!IsPostBack)   {    AspNetPager1.PageSize = 10;    if (Request.QueryString["Id"] != null)    {     Id = Request.QueryString["Id"];    }    else    { Id = ""; }    GetDataBind(Id);    DropDownListDataBind();   }  }  //RadioButtonList綁定后臺數據  private void DropDownListDataBind()  {   ExpertInfoBLL bll = new ExpertInfoBLL();   DataTable dt = bll.GetDepInfo();   foreach (DataRow dr in dt.Rows)   {    RadioButtonList1.Items.Add(dr["Name"].ToString());//循環讀出數據庫的數據       }   this.RadioButtonList1.DataSource = dt;   this.RadioButtonList1.DataTextField = "Name";   this.RadioButtonList1.DataValueField = "Id";   this.RadioButtonList1.RepeatDirection = RepeatDirection.Horizontal;   this.RadioButtonList1.DataBind();    }  private void GetDataBind(string Id)  {   //這里寫解碼和數據庫返回結果   TechnologyBLL bll = new TechnologyBLL();   string strWhere = " 1=1 ";   if (Id != "" && Id != null)   {    strWhere += string.Format(" and a.Depinfo_Id = '{0}'", Id);   }   AspNetPager1.RecordCount = bll.GetCountList(strWhere);   //綁定數據    DataTable dt = bll.GetList((AspNetPager1.CurrentPageIndex - 1) * AspNetPager1.PageSize, AspNetPager1.PageSize, strWhere, "CreateTime");   this.Repeater1.DataSource = dt;   this.Repeater1.DataBind();  }  protected void AspNetPager1_PageChanged(object sender, EventArgs e)  {   GetDataBind(Id);  }//根據選擇單選按鈕的不同id,觸發事件  protected void RadioButtonList1_SelectedIndexChanged(object sender, EventArgs e)  {    string Id;    Id = RadioButtonList1.SelectedValue;    GetDataBind(Id);  }   }}

TechnologyBLL 層的方法

namespace BTAppBLL{ public class TechnologyBLL {  TechnologyDAL dal = new TechnologyDAL();  public DataTable GetList(int startPage, int pageSize, string where, string orderby)  {   DataTable dTable = dal.GetList(startPage, pageSize, where, orderby);   return dTable;  }  public int GetCountList(string where)  {   int record = dal.GetCountList(where);   return record;  }  public DataTable GetListShow(string TechnologyId)  {   DataTable dTable = dal.GetModel(TechnologyId);   return dTable;  }  public DataTable GetPicture(string TechnologyId)  {   DataTable dTable = dal.GetPicture(TechnologyId);   return dTable;  } }}

TechnologyDAL層的方法

namespace BTAppDAL{ public class TechnologyDAL {  public DataTable GetList(int startPage, int pageSize, string where, string orderby)  {   string strSql = string.Format("SELECT a.TechnologyId,a.TechnologyName,a.Summarize,a.Effect,a.MainPoint,a.AppropriateArea,a.Attention,a.CreateTime,a.CreatUser,a.UpdateTime,b.Name FROM Technology AS a /n" +    "left join Sys_DepInfo AS b ON a.Depinfo_Id=b.Id /n" +    "where a.IsActive='1' and {0} ", where);   string proc = "proc_CommonPagerWithStatement";   SqlConnection con = SqlDbHelper.Connection;   SqlParameter[] sp = { new SqlParameter("@intStartIndex", startPage),          new SqlParameter("@intPageSize", pageSize),         new SqlParameter("@varStatement", strSql),          new SqlParameter("@varSortExpression", orderby+" DESC") };   DataTable dt = SqlDbHelper.GetDataSet(proc, sp, con);   return dt;  }  public int GetCountList(string where)  {   int countRecord = 0;   string strSql = string.Format("select COUNT(TechnologyId) as countRecord from(SELECT a.TechnologyId,a.TechnologyName,a.Summarize,a.Effect,a.MainPoint,a.AppropriateArea,a.Attention,a.CreateTime,a.CreatUser,a.UpdateTime,b.Name FROM Technology AS a /n" +    "left join Sys_DepInfo AS b ON a.Depinfo_Id=b.Id /n" +    "where a.IsActive='1' and {0} ) as c", where);   SqlConnection con = SqlDbHelper.Connection;   try   {    if (con.State == System.Data.ConnectionState.Closed)     con.Open();    DataTable dt = SqlDbHelper.GetDataTable(strSql);    if (dt.Rows.Count > 0)     countRecord = int.Parse(dt.Rows[0]["countRecord"].ToString());   }   catch (Exception)   {    throw;   }   finally   {    if (con.State == ConnectionState.Open)    {     con.Close();    }   }   return countRecord;  }  public DataTable GetModel(string TechnologyId)  {   string strSql = string.Format("SELECT a.TechnologyId,a.TechnologyName,a.Summarize,a.Effect,a.MainPoint,a.AppropriateArea,a.Attention,a.CreateTime,a.CreatUser,a.UpdateTime,b.Name FROM Technology AS a /n" +    "left join Sys_DepInfo AS b ON a.Depinfo_Id=b.Id /n" +    "where a.IsActive='1' and a.TechnologyId = '{0}' ", TechnologyId);   DataTable dataTable = SqlDbHelper.GetDataTable(strSql);   return dataTable;  }  public DataTable GetPicture(string TechnologyId)  {   string strSql = string.Format("SELECT TOP 5 a.Files_Id,a.Files_Name,a.Files_Path FROM dbo.Com_Files AS a /n" +    "LEFT JOIN dbo.Technology AS b ON a.ForeignKey_Id=b.TechnologyId /n" +    "WHERE b.IsActive=1 and a.ForeignKey_Id = '{0}' ", TechnologyId);   DataTable dataTable = SqlDbHelper.GetDataTable(strSql);   return dataTable;  } }}

ExpertInfoBLL 層的方法

 public DataTable GetDepInfo()  {   DataTable dTable = dal.GetDepInfo();   return dTable;  }

ExpertInfoDAL層的方法

 public DataTable GetDepInfo()  {   try   {    StringBuilder str = new StringBuilder(@"SELECT Id,Name FROM dbo.Sys_DepInfo WHERE Is_Active='1' AND DepinfoType='1'");    DataTable data = SqlDbHelper.GetDataTable(str.ToString());    if (data.Rows.Count > 0)    {     return data;    }    else    {     return null;    }   }   catch (Exception)   {    return null;   }  }

在頁面加載的時候調用DropDownListDataBind()方法
觸發RadioButtonList的點擊事件

 protected void RadioButtonList1_SelectedIndexChanged(object sender, EventArgs e)  {    string Id;    Id = RadioButtonList1.SelectedValue;    GetDataBind(Id);  }

既可以實現點擊某個單選按鈕,并觸發事件。

以上就是本文的全部內容,希望對大家的學習有所幫助。



注:相關教程知識閱讀請移步到ASP.NET教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 欧美日韩亚洲不卡 | 麻豆自拍偷拍视频 | 精品黑人一区二区三区国语馆 | 成人在线免费观看小视频 | 99影视在线视频免费观看 | 沉沦的校花奴性郑依婷c到失禁 | av电影院在线观看 | 国产精品午夜小视频观看 | 久久精品中文字幕一区二区三区 | 国产毛片自拍 | 亚洲电影在线观看高清免费 | 成人毛片视频在线观看 | 蜜桃麻豆视频 | 狠狠色噜噜狠狠狠米奇9999 | 毛片118极品美女写真 | 国产精品自拍av | 久久精品视频首页 | 日本成人一区 | 欧美日韩国产一区二区三区在线观看 | 毛片午夜| 奶子吧naiziba.cc免费午夜片在线观看 | 国产亚洲精品成人 | 免费a级黄色毛片 | 国产视频在线免费观看 | 91香蕉影视| 久久久精品视频在线观看 | 永久在线观看电影 | 久国产| 久久蜜桃香蕉精品一区二区三区 | 九九热视频在线免费观看 | 久久精品亚洲欧美日韩精品中文字幕 | 久久精品中文字幕一区二区三区 | 久久久久久麻豆 | 蜜桃视频在线免费播放 | 2019中文字幕在线播放 | 视频一区二区三区免费观看 | 久久久鲁 | 成人精品一区二区 | 在线播放黄色网址 | 少妇一级淫片高潮流水电影 | 成人午夜激情网 |