Open PDF with Chrome shows ASPOSE in tab

When I open a PDF using Chrome, it shows ASPOSE in browser tab.

IE browser shows the PDF name. How do I have Chrome show the file name like IE and not show ASPOSE in the Chrome browser tab?

@LoganJH,

Please send all details of the scenario, including source PDF and code. We will investigate your scenario in our environment, and share our findings with you.

There is no code. Just pdf file. You open attached pdf file in your Chrome browser and you should see the word ASPOSE in tab.

TestFile.pdf (23.1 KB)

@LoganJH,

Please set title of the PDF document before saving as follows:
C#

string dataDir = @"C:\Pdf\test846\";
Document document = new Document(dataDir + "TestFile.pdf");
// Set PDF information
document.Info.Title = System.IO.Path.GetFileName(document.FileName);
document.Save(dataDir + "Output00.pdf");