/// <summary> /// 申请 /// </summary> /// <param name="id"></param> protected void ApplyFor(string id) { var bll_select = new BLL.t_select(); /// 写入日志 BLL.Utils.Log(this, "申请选题:" + id); BLL.Utils.ShowMessage(this, bll_select.ApplyFor(id, Session["login_name"].ToString())); }
/// <summary> /// 分配 /// </summary> /// <param name="id"></param> protected void ApplyFor(string id) { var bll_select = new BLL.t_select(); BLL.Utils.ShowMessage(this, bll_select.Allocate(id, Request["xh"].ToString())); /// 写入日志 BLL.Utils.Log(this, "分配选题:" + id + "-" + Request["xh"].ToString()); }