I can able to display PDF & download [ with the help of GoogleDerive URL ] using below mentioned Code:
WebBrowser webDisplayPDF = new WebBrowser();
String strTargetURL = "
http://research.microsoft.com/pubs/79655/gazelle.pdf";
String strGoogleDriveURL = "
https://docs.google.com/gview?embedded=true&url=";
webDisplayPDF.setURL(strGoogleDriveURL + strTargetURL);
But, if i don't use GoogleDriveURL, then PDF is not coming .... ! why ? i don't know.
WebBrowser webDisplayPDF = new WebBrowser();
String strTargetURL = "
http://research.microsoft.com/pubs/79655/gazelle.pdf";
webDisplayPDF.setURL(strTargetURL);
This Code is not working. But i don't want to use GoogleDriveURL because may be GoogleDrive storing that PDF [ this can be the security problem ]
Need to solve this problem. Need HELP please .... !