SHOWcode

2019年3月10日 星期日

C#.net Page_Load 前得知所按的BUTTON


C#.net Page_Load 前得知所按的BUTTON

參考:https://dotblogs.com.tw/jeff377/2008/03/17/1725

  protected void Page_Init(object sender, EventArgs e)
    {
        string strs1 = "";
        foreach (string str in Request.Form)
        {
            String ssss = str;
            Control c = Page.FindControl(str);
            if (c is Button)
            {
                Button imageb = (Button)c;
                strs1 += imageb.ID;
            }
        }
        string strs2 = strs1;

        if (strs1 == "Button1") {

            int xxx = int.Parse(Session["count"].ToString().Trim());
            int add_xxx = xxx + 1;
            Session["count"] = add_xxx.ToString().Trim();

            //Label3.Text = (int.Parse(Label3.Text.ToString().Trim()) + 1).ToString().Trim();
            Label3.Text = Session["count"].ToString().Trim();
        }

    }

Jenkins-mail

參考:http://www.linuxea.com/1767.html 前置作業略過~有空再補 Mailer Plugin post { success { emailext ( subject: &...