zoukankan      html  css  js  c++  java
  • 根据按钮的不同的CommandArgument处理每个按钮的单击事件的代码

     

    根据" 

    如何在面板中创建动态内容的经典代码

    "中的按钮btn所写的删除事件的代码


    private void OnDeletePlace(Object sender, CommandEventArgs e)
            
    {
                
    // e.CommandArgument receives the LapseID to delete
                SqlConnection con;
                SqlCommand cmd;

                
    // Connect and execute the query
                con = new SqlConnection("data source=(local)\\NetSdk;initial catalog=FriendsData;user id=sa");
                cmd 
    = new SqlCommand("DELETE FROM TimeLapse WHERE LapseID='" + e.CommandArgument.ToString() + "'", con);
                con.Open();

                
    try
                
    {
                    cmd.ExecuteNonQuery();
                }

                
    catch 
                
    {
                    
    // Just pass the exception up
                    throw;
                }

                
    finally
                
    {
                    con.Close();
                }

    //删除之后还需重新绑定数据并显示
                LoadDataSet();
                InitPlaces();
            }

  • 相关阅读:
    IE与FF有关javascript差异的点点滴滴 F
    document.documentElement与document.body F
    CSS模块化开发 F
    关于使用“JS获取屏幕,浏览器,网页高度宽度”的个人思考 F
    GUI F
    关于mousemove和scroll事件的一点技巧 F
    博客换肤 F
    一个日历的简单实现 F
    忠烈杨家将观后感 F
    Vim的配置
  • 原文地址:https://www.cnblogs.com/ahuang1118/p/172522.html
Copyright © 2011-2022 走看看