Click here to Skip to main content
15,891,372 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
I have a pdf document which i want to open in Adobe Reader by default. but in system Adobe Acrobat 6.0 writer installed & Adobe Reader 8.0 is installed by default my code is opening pdf document in Adobe Acrobat 6.0 writer in my asp.net application. can some one help to make Adobe Reader 8.0 to be default through C# code

your suggestions highly appreciated
Posted

1 solution

You cannot force the client to use any particular application to open a file from the server: It all depends on the file associations that the client has currently set.

If you can run an application on the client (which you again, can't from the server) then you could set the file associations via the registry (there is an example here: http://stackoverflow.com/questions/69761/how-to-associate-a-file-extension-to-the-current-executable-in-c[^]) but I woudl strongly not recommend it. I have a number of video programs, and some automatically change the file associations. Those are the programs I delete and never install again.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900