Developing a content management System, I came across this requirement where the uploaded word docs needs to be converted to PDF at server, saved and later on be available for display on the browser. This is a clean approach as the content of the pages can change once in a while and there’s no point in making the content static and then reinventing the wheel when the content changes. The application uploads the word documents to the server, which are saved as PDF and become a part of the dynamic menu that contains the link if the document has been uploaded to the server. Now whenever the content of the uploaded files changes, the changed files can be uploaded to the server again and the modified content is available to the user. One of the pre-requisites for this functionality to work is the availability of save-as pdf template to be available in MS-Word 2007. If it is not available, it can be downloaded from here . I’ll not go into creation of dynamic menu and all other stu...