我使用下面的C#代碼將.doc文件保存爲SQL Server數據庫varbinary(max)
。我應該如何將.doc文件保存到SQL Server數據庫
我可以保存文件,但是當我檢索文件並想要在網頁上顯示內容時,我的代碼正在下載文件,我對如何處理它非常困惑。
我正在尋找的確切功能是naukri.com上傳簡歷並給出預覽。我的代碼是:
byte[] fileContent = new byte[fuResume.PostedFile.ContentLength];
fuResume.PostedFile.InputStream.Read(fileContent, 0, fuResume.PostedFile.ContentLength);
//lblAppliedMessage.Text = ByteArrayToString(fileContent);
//lblAppliedMessage.Text = BitConverter.ToString(fileContent).Replace("-", string.Empty);
byte[] btYourDoc;
btYourDoc = fileContent;
Response.ContentType = "application/ms-word";
Response.AddHeader("Content-Disposition", "inline;filename=yourfilename.doc");
Response.OutputStream.Write(btYourDoc, 0, fileContent.Length);
Response.BinaryWrite(btYourDoc);
Response.End();
我同意你的意見 – Tan