I'm developing a tool in ASP.Net MVC 3 Razor. There is a page where the candidate uploads the Curriculum Vitae (rtf, pdf, doc, docx formats supported).
I've done that part. But now the challenging part for me is that, I need to have another page to view the CV uploaded by the Candidate. So, this is kinda document viewer shown in a browser to see what has been uploaded. This should work even in the absence of Acrobat / MS word installations.
Please can someone throw some light on this?
iframecontaining the document then it might break the UX if their browser can't view it. I suppose you could look for some kind of client-side plugin to view it, such as a Flash plugin or something, but that seems like a deep rabbit hole. I'd recommend just having a "Download document" button/link/etc. that just returns the document itself. – David Jan 4 '12 at 18:44