Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
How could I open an Acrobat document from C# program? I do not want to read and get data in program. Only want to open it from a link.
Use the Process class:
System.Diagnostics.Process.Start("C:\Document.pdf");
Hope that helps!