Esempio n. 1
0
    protected void btnstop_Click(object sender, EventArgs e)
    {
        DataTable dt = new DataTable();

        dt = WF_GetRelatedLinks.UpdateProcessesStatus(Request.QueryString["ID"].ToString());

        Response.Redirect("~/Sys/ProcessesManage_List.aspx");
    }
Esempio n. 2
0
        public CommonService(int appId)
        {
            string url = WF_GetRelatedLinks.GetRelatedLinkByAppID(appId.ToString());

            if (string.IsNullOrEmpty(url))
            {
                throw new Exception("没有配置流程与erp服务接口地址");
            }
            this.Url = url;
        }