[求助]一个使用OledbReader更新数据的奇怪问题?
在页面的代码中:
String content = acontent.Text;//acontent是TextBox
String title = atitle.Text;//atitle是TextBox,文章标题
String str = "update articles set content= ' " + content + " ' where id= "+aid;
dbconn.updataEditData(str);
dbconn是我写的一个专用与连接数据库的类,其中updataEditData方法:
public void updataEditData(String str)
{
oledbcmd = new OleDbCommand(str, oledbConn);
oledbConn.Open();
oledbcmd.ExecuteNonQuery();
oledbConn.Close();
}
问题是:当我修改文章内容(即TextBox中的内容)提交表单后,数据库并没有更新.没有错误,没有异常.我又试着更改sql语句,修改文章标题,结果可以正确更新数据库中的文章标题.这可能是什么问题???
------解决方案--------------------String str = "update articles set content= ' " + content.Replace( " ' ", " ' ' ") + " ' where id= "+aid;
------解决方案-------------------- <%@ Page language= "c# " Codebehind= "xml.aspx.cs " validateRequest= "false " AutoEventWireup= "false " Inherits= "JetsenMAM.Net.Web.Catalogue.xml " %>
ASPX页面加上如上的validateRequest= "false " AutoEventWireup= "false "