2013年11月14日 星期四

Panel區塊內防止右鍵

Panel區塊內防止右鍵

.aspx

  1. <asp:Panel ID="pan_fileslist" runat="server">
  2.  
  3. </asp:Panel>
  4.  
  5.  
  6.  
  7.  
  8.  
  9. .cs
  10.  
  11.  
  12.  
  13. protected void Page_Load(object sender, EventArgs e)
  14.  
  15.     {
  16.  
  17.         try
  18.  
  19.         {
  20.  
  21.             //防右鍵
  22.  
  23.             this.pan_fileslist.Attributes.Add("oncontextmenu", "return false");
  24.  
  25.  
  26.  
  27.             //防選取
  28.  
  29.             this.pan_fileslist.Attributes.Add("onSelectStart", "return false");
  30.  
  31.             this.pan_fileslist.Attributes.Add("onDragStart", "return false");
  32.  
  33.         }
  34.  
  35.         catch (Exception)
  36.  
  37.         {
  38.  
  39.  
  40.  
  41.             throw;
  42.  
  43.         }
  44.  
  45.     }

沒有留言:

張貼留言