Open file (pdf, doc, etc)

0

I have the following code, which works perfect in IE, but in Chrome it does nothing, it opens the pdf and does not download. Any special settings in Chrome?

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Menu.ascx.cs" Inherits="Intranet.Shared.Menu" %>
<dl class="menu">
    <dt><a href="P:\db_intranet\Planejamento\AcordoPLR.pdf"  target="_blank">Acordo PLR</a></dt>
    <dt><a href="P:\db_intranet\comunicacao\correio\CorreioRPR.pdf?" target="_blank">Correio da RPR</a></dt>
    <dt><a href="<%= ResolveUrl("~/Paginas/Sistemas.aspx") %>">Sistemas</a></dt>
</dl>
    
asked by anonymous 21.07.2015 / 21:40

1 answer

0

Put the path from where the page is and not from the root.

    
21.07.2015 / 22:12