停止右键单击navigateurl页面 [英] stop right click in navigateurl page

查看:73
本文介绍了停止右键单击navigateurl页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在点击带有导航网址的超链接的新标签页面中打开jpg图片或pdf,
如何停止右键单击navigationurl页面,不允许保存和打印打开的jpg文件或pdf在该页面

thnx提前

例如



I am opening jpg image or pdf in new tab on clicking the hyperlink with navigate url,
how to stop right click in navigateurl page for not to allowing to save and print the opened jpg file or pdf in that page
thnx in advance
e.g.

<asp:TemplateField HeaderText="" ItemStyle-Width="3px">
                            <ItemTemplate>
                                <%--<asp:Label ID="lblDocumentName" runat="server" Text='<%# Bind("DocumentName") %>'></asp:Label>--%>
                                <asp:HyperLink ID="HyperLink1" runat="server" Text='Result' NavigateUrl='<%# Eval("GAtchPath").ToString()%>'

                                    Target="_blank"></asp:HyperLink>
                            </ItemTemplate>
                        </asp:TemplateField>

推荐答案

使用Jquery避免右键单击..

Use Jquery to avoid right click..


(document).bind(< span class =code-string> contextmenu,function(e){
返回 false ;
});
(document).bind("contextmenu", function(e) { return false; });


这篇关于停止右键单击navigateurl页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆