我从Database中获取文本框中的XML数据。现在我想在DB中进行一些更改和更新。当我尝试更改文本框不允许文本时,但它会删除数据。我的代码
private void button1_Click(object sender, EventArgs e)
{
connection.Open();
string str = "select col1 from Table where Clo2='" + txt1.Text + "'";
SqlCommand command = new SqlCommand(str, con);
XmlReader xmlreader = command .ExecuteXmlReader();
xmlreader.Read();
txt2.Text = xml.ReadOuterXml();
XmlDocument document = new XmlDocument();
document .PreserveWhitespace = true;
document .LoadXml(txt2.Text);
}
我怎样才能在Textbox中输入文字。请给出一些建议......