日期:2014-05-17  浏览次数:20479 次

ASP.NET(c#)我想按行读取文本框内容,为什么找不到.Lines属性?
         private void button1_Click(object sender, EventArgs e)

         {

              string[] tempArray = new string[textBox1.Lines.Length];

              tempArray = textBox1.Lines;

              string prompt = "第" + this.textBox2.Text + "行的内容为:";

              string title = "读取文本框指定行的内容";

              MessageBox.Show(prompt+tempArray[int.Parse(this.textBox2.Text)-1],title);

         }


我想按行读取文本框内容放入数组中,找不到Lines属性。

------解决方案--------------------
你这个到底是winform还是asp.net?
TextBox只有Text,没有Lines
如果是winform,只有RichTextBox才有Lines
------解决方案--------------------
引用:
我用2008,TextBox 没有 Lines 属性。
没装08不知道了,反正10是可以的
------解决方案--------------------
引用:
你这个到底是winform还是asp.net?
TextBox只有Text,没有Lines
如果是winform,只有RichTextBox才有Lines
10 winform  textbox也有lines属性啊
------解决方案--------------------
引用:
Quote: 引用:

你这个到底是winform还是asp.net?
TextBox只有Text,没有Lines
如果是winform,只有RichTextBox才有Lines
10 winform  textbox也有lines属性啊

说漏了,asp.net里的TextBox没有Lines