1、毁弊先把textbox.text.Tostring()写到你定义的变量。
string txtStr = textbox.text;
2、建立连接
sqlConnection con = new sqlConnection("server=.;database=hostel;uid=你数据库管理员名;pwd=密码";
3、打开数据库
con.open()
4、对数据库进行操作(毕余正这几步基本上的手悔书都应该有吧)
sqlCommand cmd = new sqlCommand(insert into Manage values(txtStr),con);
cmd.ExcuteNonQuery();
cmd.CommandType = CommandType.Text;
con.close();
够清楚了吧 手写的可能会有些毛病 但大概意思就是这样