我需要从网络表单上的文本框中获取文本值。在文档中提到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
。如何从文本框控件中获取文本值?
答案 0 :(得分:1)
尝试将inputValues[i]
投射到System.Web.UI.WebControl.Textbox
。然后访问Text
属性:
FieldValue = ((System.Web.UI.WebControl.Textbox)(inputValues[i])).Text;