私は単語ファイルを持っています:
質問1:回答Aの質問の内容:回答B:回答C:回答D:
このファイルを読み取り、データベースにデータを挿入します。たとえば、question1はQuestion列に表示され、それぞれの回答はanswers列に表示されます.........
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);