我有一个word文件:
问题 1:问题内容 答案 A: 答案 B: 答案 C: 答案 D:
我想读取这个文件并将数据插入到我的数据库中,例如问题1将进入问题列,相应的答案将进入答案列.........
string strPath = Server.MapPath("~/Test.doc");
// Request.PhysicalApplicationPath + "\\Test.doc";
FileStream fStream = new FileStream (strPath, FileMode.Open, FileAccess.Read);
StreamReader sReader = new StreamReader(fStream);
//TextBox2.Text = sReader.ReadToEnd();
string data1 = sReader.ReadToEnd();
sReader.Close();
Response.Write(data1);