IntroductionSometimes we need to open a Microsoft Word document in an ASP.NET application. This article demonstrates how to open a Word document in an ASP.NET application.What do we need to open document?Response.ContentType = "application/vnd.msword.document.12";The ContentType property specifies the HTTP content type for the response. If no ContentType is specified, the default is text/HTML. We could say ContentType is a DocType, so we could set ContentType by using the code shown below: private string GetDocumentMimeType(string fileName) { //string mimeType = "application/unknown"; string mimeType = "application/vnd.msword.document.12"; string ext = System.IO.Path.GetExtension(fileName).ToLower(); Microsoft.Win32.RegistryKey regKey = Microsoft.Win32.Registry.ClassesRoot.OpenSubKey(ext); if (regKey != null && regKey.GetValue("Content Type") != null) mimeType = regKey.GetValue("Content Type").ToString();
return "//" + mimeType; }In an ASP.NET application we need to add the header: Content-Disposition,Content-LengthContent-Disposition: attachmentBody parts designated as containing attachments require user action to be displayed and are normally split out of the message. They are typically stored as files for subsequent access. The optional parameters for this header are: file name, creation-date, modification-date, read-date, and size.What does the AddHeader method do?The AddHeader method adds a new HTML header and value to the response sent to the client.
You need to be a premium member to use this feature. To access it, you'll have to upgrade your membership.
Become a sharper developer and jumpstart your career.
$0
$
. 00
monthly
For Basic members:
$20
For Premium members:
$45
For Elite members: