数据库代码如下:strSQL="INSERT INTO information (name,pwd,question,answer,mail,sex,year,monthday,height,marriage,nation,permanent,qq,msn,star,weight,school,page,phone,mobile,sport,movie,music,food,book,idol,intro,academic,job,income,area,havesp,condition,havepho) VALUES('";
 strSQL+=txtName.Text.ToString()+"','";
 strSQL+=txtPWD.Text.ToString()+"','";
 strSQL+=txtquestion.Text.ToString()+"','";
 strSQL+=txtanswer.Text.ToString()+"','";
 strSQL+=txtEmail.Text.ToString()+"','";
 strSQL+=rdoSex.SelectedItem.Text.ToString()+"','";
 strSQL+=txtyear.Text.ToString()+"','";     
 strSQL+=txtmonth.Text.ToString()+"-"+txtday.Text.ToString()+"','";
 strSQL+=txtheight.Text.ToString()+"cm"+"','";
 strSQL+=rdomarriage.SelectedItem.Text.ToString()+"','";
 strSQL+=dronation.SelectedItem.Text.ToString()+"','";
 strSQL+=Location1Province.Value.ToString()+"省"+Location1City.Value.ToString()+"市"+"','";
 strSQL+=txtqq.Text.ToString()+"','";
 strSQL+=txtmsn.Text.ToString()+"','";
 strSQL+=drostar.SelectedItem.Text.ToString()+"','";
 strSQL+=txtweight.Text.ToString()+"','";
 strSQL+=txtschool.Text.ToString()+"','";
 strSQL+=txtpage.Text.ToString()+"','";
 strSQL+=txttel.Text.ToString()+"','";
 strSQL+=txtmobile.Text.ToString()+"','";
 strSQL+=txtsport.Text.ToString()+"','";
 strSQL+=txtmovie.Text.ToString()+"','";
 strSQL+=txtmusic.Text.ToString()+"','";
 strSQL+=txtfood.Text.ToString()+"','";
 strSQL+=txtbook.Text.ToString()+"','";
 strSQL+=txtidol.Text.ToString()+"','";
 strSQL+=txtintro.Text.ToString()+"','";
 strSQL+=droacademic.SelectedItem.Value.ToString()+"','";
 strSQL+=drojob.SelectedItem.Text.ToString()+"','";
 strSQL+=droincome.SelectedItem.Text.ToString()+"','";
 strSQL+=txtarea.Text.ToString()+"','";
 strSQL+="f"+"','";
 strSQL+="1"+"','";
 strSQL+="1"+"')";
  Page.Response.Write(strSQL);
   strConn="provider=Microsoft.Jet.OLEDB.4.0;data source="+Server.MapPath("./")+"data/users.mdb";
cn=new OleDbConnection(strConn);
cmd=new OleDbCommand(strSQL,cn);
cn.Open();
cmd.ExecuteNonQuery();
   cn.Close();出错:INSERT INTO 语句的语法错误。 
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。 异常详细信息: System.Data.OleDb.OleDbException: INSERT INTO 语句的语法错误。源错误: 
行 134: cmd=new OleDbCommand(strSQL,cn);
行 135: cn.Open();
行 136: cmd.ExecuteNonQuery();
行 137:    cn.Close();
行 138:   
 源文件: D:\heilsin\1\www\new\reg.aspx    行: 136 我把语句打印在屏幕上如下:INSERT INTO information (name,pwd,question,answer,mail,sex,year,monthday,height,marriage,nation,permanent,qq,msn,star,weight,school,page,phone,mobile,sport,movie,music,food,book,idol,intro,academic,job,income,area,havesp,condition,havepho) VALUES('qwerty','555555','gfhfdhdfh','hghdfgfdhfh','hdfhdfhfd','男','0','0-0','180cm','未婚','未填','0省0市','未填','未填','未填','0','未填','未填','未填','未填','未填','未填','未填','未填','未填','未填','未填','01','未填','未填','未填','f','1','1')找不到错误,请指教!!