Getting Pdf File information
This resource will display the title,author,subject,kewords in the pdf.
PDFSHELLSERVERLib.PDFShellInfoClass pdfinfo = new PDFSHELLSERVERLib.PDFShellInfoClass();
string title, subj, author, keyword;
pdfinfo.GetColumnInfo(@"path\dotnet.pdf", out title, out subj, out author, out keyword);
Response.Write(title+"");
Response.Write(subj + "");
Response.Write(author + "");
Response.Write(keyword + "");
I don't know How editors allow this kind of code snippet. I am sure that there is no component like PDFSHELLSERVERLib in .Net.
The author should post the link where to get the the PDFSHELLSERVERLib