码迷,mamicode.com
首页 > 其他好文 > 详细

后台生成textbox并设置多行属性,自动换行

时间:2015-01-18 17:01:25      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:

Table tb = new Table();
TableRow row1 = new TableRow();
TableCell tc1 = new TableCell();
TableCell tc2 = new TableCell();

Image img = new Image();
img.ImageUrl = item.Picurl;

TextBox text = new TextBox();
text.Text = item.Notes;
text.CssClass = "text";
text.Wrap = true;
text.TextMode = TextBoxMode.MultiLine;

tc1.Controls.Add(img);
tc2.Controls.Add(text);

row1.Controls.Add(tc1);
row1.Controls.Add(tc2);

tb.Controls.Add(row1);

photos.Controls.Add(tb);

技术分享

后台生成textbox并设置多行属性,自动换行

标签:

原文地址:http://www.cnblogs.com/ctautocn/p/4231837.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!