sql事务,几个用到的正则

sql 通过事务可以对同一个表做N个修改操作,别再忘了...

正则:^[^s]{1}$ 一个非空字符;

      :^(?![^s]*$).{1,500}$ 1~500个字符之间,必须有空白符

      :^(?=.*?S)[sS]{0,500}$  1~500个字符之间 至少有一个是非空白符

//向选取页传参
    protected void Product_TriggerClick(object sender, EventArgs e)
    {
        PageContext.RegisterStartupScript(Window1.GetSaveStateReference(Product.ClientID, Changecount.ClientID, Barcodes.ClientID, Idandcount.ClientID) + Window1.GetShowReference("../FixoutbillManage/ChooseForm.aspx?company=" + ddloutunit.SelectedValue + "&&stock=" + ddlstock.SelectedValue, "选择"));
        //Response.Redirect("ChooseFrom.aspx?company=" + ddlunit.SelectedValue + "&&stock=" + ddlstock.SelectedValue);
    }
原文地址:https://www.cnblogs.com/wningning/p/3276991.html