I have a Filetable containing many different document types (.doc;.pdf;.xls etc).
I am writing a small web (C# / .net 4) search app. Search works great using fulltext index with filetable to find content.
But I’m struggling to find a way in my app to have the search results as links which can launch the document in question? And just handle the different file types? (Assume client has Word/adobe/excel installed etc)
Grateful for any advice.
You will need to write a custom page handler to stream the bytes to the client with the proper HTTP headers. You will need to decide whether to support inline viewing (open in the browser –
Content-Disposition: inline) versus external viewing using an attachment (e.g.Content-Disposition: attachment).If you are using ASP.NET MVC – you can leverage the
FileResultto streamline this process, but creating your own handler wouldn’t be too much different.The best approach to handling various MIME types (PDF, DOC, XLS) is to statically define the supported file types or dynamically read IIS and assign the appropriate
Content-TypeHTTP header.