Asp.net中使用文字框的值動態產生控制項的方法_實用技巧

來源:互聯網
上載者:User

看到一個網友,有論壇上問及,動態產生checkbox控制項,在文字框中輸入一個“花”字,點一下“產生”按鈕,就會在下面產生一個checkbox,它的text屬性是“花”。再輸入一個“鳥”,點一下按鈕,就會產生第二個checkbox控制項,text屬性是“鳥”...

Insus.NET的解決方案很簡單,就是每次在文字框輸入的值都存起來,然後把這些資料繫結至一個CheckBoxList控制項上就行了。

詳細,先建立一個對象:

using System;using System.Collections.Generic;using System.Linq;using System.Web;/// <summary>/// Summary description for Letter/// </summary>namespace Insus.NET{public class Letter{private string _Name;public string Name{get { return _Name; }set { _Name = value; }}public Letter(){}public Letter(string name){this._Name = name;}}} 

建立一個實體,這個實體你可以把它開發成可以操作性,如添加,編輯,更新,刪除或是擷取資料集,等等...

在本例中,Insus.NET只實添加以及擷取資料的兩個方法:

using System;using System.Collections.Generic;using System.Linq;using System.Web;/// <summary>/// Summary description for LetterEntity/// </summary>namespace Insus.NET{public class LetterEntity{private List<Letter> _Letter = new List<Letter>();public void Add(Letter l){this._Letter.Add(l);}public IEnumerable<Letter> Letters{get {return this._Letter;}}}} 

萬事俱備,只差ASPX的實現了,建立一個aspx的網頁:

在ASPX.cs字碼頁中,你可以實現所需要的功能:

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 Default2 : System.Web.UI.Page{LetterEntity le = new LetterEntity();protected void Page_Load(object sender, EventArgs e){if (!IsPostBack){Data_Binding();}le = TemporaryLetters;}private void Data_Binding(){this.CheckBoxList1.DataSource = le.Letters;this.CheckBoxList1.DataTextField = "Name";this.CheckBoxList1.DataBind();}protected void Button1_Click(object sender, EventArgs e){Letter l = new Letter();if (!string.IsNullOrEmpty(this.TextBox1.Text.Trim()))l.Name = this.TextBox1.Text.Trim();le.Add(l);TemporaryLetters = le;Data_Binding();}public LetterEntity TemporaryLetters{get{if (Session["LetterEntity"] == null)return new LetterEntity();elsereturn (LetterEntity)Session["LetterEntity"];}set{Session["LetterEntity"] = value;}}} 

你也許覺得很複雜,因為涉入儲存資料的問題。如果你把資料直接存入資料庫的話,你可以在上面#6步中把填寫的值存入資料庫中,在#4步中,去讀取資料庫的資料繫結給CheckBoxList控制項即可。

以上所述是小編給大家介紹的Asp.net中使用文字框的值動態產生控制項的方法的相關知識,希望對大家有所協助,如果大家有任何疑問請給我留言,小編會及時回複大家的。在此也非常感謝大家對雲棲社區網站的支援!

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.