LNotes-ASP.NET-asp.net基本控件赋值提取

ylbtech-LearningNotes:LNotes-ASP.NET-asp.net基本控件赋值提取
 
1.A,学习课程-知识点

 asp.net基本控件赋值提取。

1.B,课堂笔记及课下总结

asp.net基本控件赋值提取

 
控件名 实例 注意事项
文本 Label2.Text ="采集商品信息如下,商品名称:"+ TextBox1.Text;  
下拉文本 Label2.Text += "<br>商品型号:" + DropDownList1.SelectedValue;  
3个单选按钮 if (RadioButton1.Checked)
{
Label2.Text += "<br>商品付款方式:" + RadioButton1.Text;
}
if (RadioButton2.Checked)
{
Label2.Text += "<br>商品付款方式:" + RadioButton2.Text;
}
if (RadioButton3.Checked)
{
Label2.Text += "<br>商品付款方式:" + RadioButton3.Text;
}
 
单选按钮组 Label2.Text += "<br>是否订货:" + RadioButtonList1.SelectedValue;  
多个复选框按钮

Label2.Text += "<br>消息来源:";
if (CheckBox1.Checked)
{
Label2.Text += CheckBox1.Text + ",";
}
if (CheckBox2.Checked)
{
Label2.Text += CheckBox2.Text + ",";
}
if (CheckBox3.Checked)
{
Label2.Text += CheckBox3.Text + ",";
}

if(Label2.Text.EndsWith(","))
{
Label2.Text = Label2.Text.Substring(0, Label2.Text.Length - 1);
}

 
复选框按钮组

Label2.Text += "其他来源:";
for (int i = 0; i < CheckBoxList1.Items.Count; i++)
{
if (CheckBoxList1.Items[i].Selected)
{

Label2.Text += CheckBoxList1.Items[i].Value + ",";
}
}

 
文本框 Label2.Text += "<br>备注:" + TextBox2.Text;  
申请日期 Label2.Text +="<br>申请日期:"+ Calendar1.SelectedDate;  
     
  献给阳儿 高考能考上一个理想的大学  
1.C,升华提升|领悟|感知|天马行空-痴人说梦

 无。

warn 作者:ylbtech
出处:http://ylbtech.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
posted on 2013-02-25 11:00  ylbtech  阅读(276)  评论(0编辑  收藏  举报