首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > ASP >

C# WEB里怎么从数据库读入,再输出到textbox

2012-03-25 
C# WEB里如何从数据库读入,再输出到textboxthis.txtBoxName.TextthisReader[ CustomerID ]我这么写不

C# WEB里如何从数据库读入,再输出到textbox
this.txtBoxName.Text   =   thisReader[ "CustomerID "];
我这么写不对啊,哪个达人能帮帮我啊

[解决办法]
txtBoxName应该是服务器端控件
如:
<asp:textbox id= "txtBoxName " runat= "server " TextMode= "MultiLine " MaxLength= "30 " Width= "224px " Rows= "5 " Columns= "60 "> </asp:textbox>

txtBoxName.Text = thisReader[ "CustomerID "].ToString();

热点排行