asp.net在代码隐藏中将多行和行添加到文本框中

时间:2010-12-17 18:17:59

标签: asp.net vb.net textbox multiline

我正在使用VS 2010和.net 4.我正在试图弄清楚如何使文本框成为多行并在代码隐藏中设置行。任何人都可以提供帮助。

我正在试图找出我正在处理的用户控件。因此,在通过to user控件传递的属性中,它会将文本框设置为多行或不是。

感谢 香农

2 个答案:

答案 0 :(得分:0)

我相信Textmode属性和The Rows属性是你要找的东西

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.textbox.aspx

答案 1 :(得分:0)

这里是如何在代码后面设置文本框。

      TextBox TranslationTextArea = new TextBox();
      TranslationTextArea.ID = "txtb" + Id;
      TranslationTextArea.Text = text;
      TranslationTextArea.Height = 75;
      TranslationTextArea.Columns = 40;
      TranslationTextArea.MaxLength = 160;
      TranslationTextArea.TextMode = TextBoxMode.MultiLine;