System.Web.UI.WebControl.Textbox不包含Text的定义

时间:2016-03-01 04:36:29

标签: c# asp.net .net webforms

我需要从网络表单上的文本框中获取文本值。在文档中提到System.Web.UI.WebControl.Textbox有一个属性Text但是当我尝试使用它时出现错误。

string FieldName= "";
string FieldValue="";
if (inputValues[i] is System.Web.UI.WebControls.TextBox)
{
  FieldName = inputValues[i].ClientID;
  FieldValue = inputValues[i].Text; // error
}

显示的错误是System.Web.UI.WebControl.Textbox does not contain the definition of Text。如何从文本框控件中获取文本值?

1 个答案:

答案 0 :(得分:1)

尝试将inputValues[i]投射到System.Web.UI.WebControl.Textbox。然后访问Text属性:

FieldValue = ((System.Web.UI.WebControl.Textbox)(inputValues[i])).Text;