初學C#+ASP.NET+Oracle備忘錄

來源:互聯網
上載者:User
在asp.net中,如何斷行符號觸發指定按鈕的事件?

假設:


<asp:TextBox id="TextBox1" runat="server" Width="240px"></asp:TextBox>

<asp:Button id="ButtonOK" runat="server" BorderWidth="1px" BorderColor="Purple" BorderStyle="Solid" Text="Search Site"></asp:Button> 

 解決方案:

在.aspx頁面中添加:

<SCRIPT LANGUAGE="javascript">

function EnterKeyClick(button)

{   

if (event.keyCode == 13)

{        

event.keyCode=9;

event.returnValue = false;

document.all[button].click();

}

}

</SCRIPT>  

 在Page_Load事件中添加:

TextBox1.Attributes.Add("onkeydown","EnterKeyClick('ButtonOK');");  

 關於DATAGRID資料更改時點2次/行號跟不準/失去焦點/丟失e等一系列問題的解決辦法:首先把資料連線/dataadater等資訊全放到void bindgrid中,其他地方不用if(!ISPOSTBACK),在PAGELOAD的時候只用個

   if (!IsPostBack)
   {
       BindGrid();
   } 

--------------------------------------------------------------

例如: 

 private void Page_Load(object sender, System.EventArgs e)
  { if (!IsPostBack)
   {BindGrid();}
  }
  private void DataGrid1_EditCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)
  { DataGrid1.EditItemIndex = e.Item.ItemIndex;
   BindGrid();
  }
  private void DataGrid1_CancelCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)
  { DataGrid1.EditItemIndex = -1;
   BindGrid();
  }
  void BindGrid()
  { oleDbDataAdapter1.Fill(dataSet11);
   DataGrid1.DataBind();
  }

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.