我的asp.net页面上有一堆文本框,在TextChanged事件上,我想运行一个存储的proc以根据用户输入返回名称。如果我有如下代码块:

TextBox t = (TextBox)sender;
string objTextBox = t.ID;

如何获取objTextBox的.Text值?

最佳答案

使用此代替:
string objTextBox = t.Text;
对象tTextBox。调用objTextBox的对象被分配了IDTextBox属性。

因此更好的代码是:

TextBox objTextBox = (TextBox)sender;
string theText = objTextBox.Text;

10-06 08:18