Re: Book on server path is not readed by iframe
Rather than to convert back your physical path, are you able to create a string such as "~/books/file.pdf" based on what you have in your db (books might be something configurable if you want later to...
View ArticleRe: Book on server path is not readed by iframe
Hi Ribha,Ribha<iframe src="@row.BookLink" style="width:645px; height:700px;"></iframe>You need to modify the BookLink value manually linked to physical file path. Or you could...
View ArticleRe: Book on server path is not readed by iframe
Ok got that, now what can i do ? is their a way to convert my physical path?
View ArticleRe: Book on server path is not readed by iframe
As said earlier it should be something such as /books/file.pdf so if your site ishttp://somesite.com the browser will try to loadhttp://somesite.com/books/file.pdfCurrently it tries to access the...
View ArticleRe: Book on server path is not readed by iframe
Yup PatriceSC it include drive (c:/) . Do i need to convert this physical path?
View ArticleRe: Book on server path is not readed by iframe
Be explicit please. Since the beginning we are trying to tell that if this is a physical server side path, it won't make sense client side where server side drives or network shares are unknown and not...
View ArticleRe: Book on server path is not readed by iframe
@row.BookLink is my db table field name which contains the path of book folder where I insert booksBasically i am trying to open book on iframe of user's interest from my book gallery.
View ArticleRe: Book on server path is not readed by iframe
Hi Ribha,Ribha<iframe src="@row.BookLink" style="width:645px; height:700px;"></iframe>What's the value of the row.BookLink? You could get the value in the code behind, then check out it. If...
View ArticleRe: Book on server path is not readed by iframe
Hi, Here the BookLink is the field name of my db table where i store the book path and i am retrieving book through foreach loop. Sorry i dn't explain my question clearly<div id="box1"> @foreach...
View ArticleRe: Book on server path is not readed by iframe
Hi,BookLink needs to be a web address. It can be either a web address that matches the actual location of the file on the server. It can be also a web address that will run some code to grab and send...
View ArticleBook on server path is not readed by iframe
Hi, im new in programming. i just got stuck in a very small thing (may be) well i am storing pdf on server path due to some security problems iframe does not read pdf from server path so please help me...
View Article