My problem here is I have been trying to display a pdf file in an Iframe.It works fine in IE but not working in chrome or firefox.However I am able to open them in a new tab.But as per my requirement I have to display it along with other form where data from pdf will be filled in the form.So I have used Iframes.Is there any other solution to display file along with form other than Iframes.what can i do with it? Below is the one which I tried.
<iframe src="file://///GSEV/PdfsFolder/@Model.FileName"></iframe>
<iframe src="@Url.Content("file://///GSEV/PdfsFolder/" + Model.FileName )"></iframe>
thanks in advance..