PDF file not Open in Mobile Devices - web-services

i have a website which contains lots of PDF its work good at desktop but mean while mobile devices do not support PDF file. There is no PDF file open in mobile devices. Any one give me idea to solve this issue.

The problem is CSS. Try loading the page an your browser but make the window size narrow (like a phone) so that the sidebar drops below the pdfs. you will not be able to click on the pdf icon. something is wrong with how you are presenting the links/icons.
Specifically the entire section with the links is overshadowed by the search form.

Related

How do I create a hyperlink for a filepath in powerbi?

I am trying to create a file path link in either a table or a tooltip on a map in Powerbi. After doing some research "File" is an acceptable input for the "Web URL" data category. But for some reason when I try to use it as a hyperlink in the browser, it will not work. Below are some pictures of the problem.
What is the best way to fix this issue? Do I need to change how I string in the file path?
I found definitive answer - it doesn't work as one would expect. It appears it only used to work on Edge, however Edge has switched to Chromium underneath and this capability has not been carried over since it is a potential security risk.
If I navigate from Power BI Service and try and right click to open the link, I get. about:blank#blocked
Here is the post I found
And here is the idea you need to vote for: - Extract below.
Currently open a local file from Desktop is not possible and from browser is very tedious as explained on May 2017 update:
https://powerbi.microsoft.com/en-us/blog/power-bi-desktop-may-feature-summary/#urlTables
"If you want to use file URLs, there are some limitations. They will not open in the Power BI Desktop, only in web browsers. For most browsers, you will need to right click on the link, copy the link address, and paste the URL in a new tab"
It will be great if can be improved the way to open the files in same way as with web images or files (http://).

Getting the specific data from a web page with boost/asio

I am learning boost/asio. I can do an endpoint, active and passive sockets. Now I want to write something like a simple client application, which will get specific data from web pages.
So I have few questions about that:
If I have a done an socket, which is related with a web page, how can specify some content on the page. For example, I want to get an image. There are many images on the page. Not only images. I want to identify specific image. How can i do that?(may be and "id" from html or some how else).
After that I want to get that specific image on my PC. How can I download it and save it?
If it is not image, if I want to work with audio file, video file, text, hyperlink and e.t.c. How to generalize it for any type of content?
How can I follow links on web page?
You also may use boost/beast in answer for this question.
offtop
(cpp is not good idea for dealing with that stuff, I know that)

Openeing a youtube search via a link in an embedded IWebBrowser2 control fails

I have a simple IWebBrowser2 browser in my application like this one sample.
We use this browser control for a research in our application to search for address information. The user may click on a button to perform a selective search for given keywords in the address and the result is shown in this browser control.
For example we execute a YouTube search for
https://www.youtube.com/results?search_query=test+video
I can copy the link into a browser (Chrome, IE, Edge) and the search is executed.
But from within the embedded Control the search shows the following text:
Google Sorry...
We're sorry...
... but your computer or network may be sending automated queries. To protect our users, we can't process your request right now.
See Google Help for more information.
The help links are not useful, and the problem arises only to searches on Youtube from within the IWebBrowser2. No Captcha is shown. We use AV and Firewall software... so something from YouTube/Google don't like browsing from an IWebBrowser2.
Hint: If you want to use the sample code form CodeProject you should thet ES_AUTOHSCROLL for the URL edit control. Otherwise you will not be able to enter a long search URL.
Set the agent field of the http query header to emulate a known browser.

JW player play/Pause button refreshing browser

having an annoying problem with JW Player. If I click on the video it will pause and play generally fine however if I use the pause and play button it refreshes my browser. Seems to effect browsers using the HTML5, fine in Flash. Can't come across anyone reporting the same problem. Running the files from videos in Sitecore Media Library. I was having a problem in IE9, saying 'error loading media: file could not be played' I sometimes get this in Chrome after trying to resume playback of video. Any ideas? Have encoded the video in Handbrake as iphone4 and universal MP4 with web optmise ticked.
Not done anything that special with the Javascript and using default skin.

Can I access Flash data before they are rendered by the browser?

Is it possible to read numbers and names from a Flash page before they are rendered by the browser ? The webpage is changing dynamically and I would like to capture the data every about 60 minutes.
I have no access to the Flash website but I might be able to modify an open source browser if this would help. OS is Win 7 and I can speak a little C++.
The data is chnaging dynamically means that there is some page at backend serving to the flash page. Use a sniffer (such as ethereal) to know the serving page. Then you can call the page directly.
Another solution might be create a screenshot of browser and then pass this to a OCR
http://www.codeproject.com/KB/dotnet/simple_ocr.aspx