有关 string.format()问题
string sql3 = String.Format("insert guestcategory (categoryid,categoryname,categoryrate) values ({0},'{1}','{2}')",Convert.ToInt32( txt_roomNo.Text), txt_name.Text, txt_roomtype.Text);其中categoryid 是int类型
categoryname,categoryrate是字符串类型
txt_name txt_roomNo txt_roomtype是文本框
字符串格式错误
究竟错在哪?
请指教?