看到一个网友,有论坛上问及,动态的生成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(); else return (LetterEntity)Session["LetterEntity"]; } set { Session["LetterEntity"] = value; } } }
你也许觉得很复杂,因为涉入存储数据的问题。如果你把数据直接存入数据库的话,你可以在上面#6步中把填写的值存入数据库中,在#4步中,去读取数据库的数据绑定给CheckBoxList控件即可。
以上所述是小编给大家介绍的Asp.net中使用文本框的值动态生成控件的方法的相关知识,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
- 方伊琪.1979-沙鸥(LP版)【星岛全音】【WAV+CUE】
- 蔡琴《醇厚嗓音》6N纯银SQCD【WAV+CUE】
- 陈曦《遇见HQCD》[WAV+CUE]
- 大提琴-刘欣欣《爱的问候》HDCD[WAV+CUE]
- 周耀辉/邓慧中《从什么时候开始》[320K/MP3][95.71MB]
- 周耀辉/邓慧中《从什么时候开始》[FLAC/分轨][361.29MB]
- 蒋荣宗《蒋荣宗ZONG x FOCA 夏日马戏节》[320K/MP3][89.28MB]
- 坣娜.1997-你怎么可以不爱我【巨石】【WAV+CUE】
- 群星.1992-暗恋桃花源电影原声带【滚石】【WAV+CUE】
- 林隆璇.1989-愤怒的情歌【巨石】【WAV+CUE】
- 勤琴《海上花》[DTS-WAV分轨]
- 群星《歌声有故事》[DTS-WAV分轨]
- [发烧人声]群星《邂逅》DTS-WAV
- 艻打绿《夏/狂热(苏打绿版)》[320K/MP3][106.42MB]
- 艻打绿《夏/狂热(苏打绿版)》[FLAC分轨][574.2MB]