摘要:
对于企业网站,客户有时候会有这样的需求,既页面内容不允许复制,既右键屏蔽,这里有一段简单的JS可以实现:<script type="text/javascript"> <!-- if (window.Event) document.captureEvents(Event.MOUSEUP); function nocontextmenu() { event.cancelBubble = true event.returnValue = false; return false; } function norightclick(e) { if (window.E 阅读全文
摘要:
datalist和repeater一样,都是根据自己的需要添加自己的模板前台代码如下:view sourceprint?<body> <form id="form1" runat="server"> <div> <asp:DataList ID="DataList1" runat="server" DataKeyField="ID" RepeatDirection="Horizontal"> <ItemTemplate&g 阅读全文