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
------解决方案--------------------没装08不知道了,反正10是可以的
------解决方案--------------------10 winform textbox也有lines属性啊
------解决方案--------------------
说漏了,asp.net里的TextBox没有Lines