如何将从多选框中获得的字符串拼接,然后后插入数据库?
用StringBuffer吧 从内存泄露情况看尽量少用String
string a = string.Empty;
a+=textbox.Text;
是要字符串拼接吗?