我的asp.net页面上有一堆文本框,在TextChanged事件上,我想运行一个存储的proc以根据用户输入返回名称。如果我有如下代码块:
TextBox t = (TextBox)sender;
string objTextBox = t.ID;
如何获取objTextBox的
.Text
值? 最佳答案
使用此代替:string objTextBox = t.Text;
对象t
是TextBox
。调用objTextBox
的对象被分配了ID
的TextBox
属性。
因此更好的代码是:
TextBox objTextBox = (TextBox)sender;
string theText = objTextBox.Text;