本文整理汇总了C#中HyoaClass.Hyoa_global类的典型用法代码示例。如果您正苦于以下问题:C# HyoaClass.Hyoa_global类的具体用法?C# HyoaClass.Hyoa_global怎么用?C# HyoaClass.Hyoa_global使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
HyoaClass.Hyoa_global类属于命名空间,在下文中一共展示了HyoaClass.Hyoa_global类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Button_Zx_Click
//执行
protected void Button_Zx_Click(object sender, EventArgs e)
{
string ls_return = "";
if (txtsql2.Value == "")
{
ls_return = "请填写执行语句";
}
if (ddldbconn.SelectedValue == "")
{
ls_return = "请选择连接";
}
HyoaClass.Hyoa_global Hyoa_global = new HyoaClass.Hyoa_global();
if (ddldbconn.SelectedValue == "base")
{
if (Hyoa_global.ExcuteSQL_BASE(txtsql2.Value) == true)
ls_return = "执行成功";
else
ls_return = "执行失败";
}
if (ddldbconn.SelectedValue == "pro")
{
if (Hyoa_global.ExcuteSQL(txtsql2.Value) == true)
ls_return = "执行成功";
else
ls_return = "执行失败";
}
if (ddldbconn.SelectedValue == "user")
{
if (Hyoa_global.ExcuteSQL_USER(txtsql2.Value) == true)
ls_return = "执行成功";
else
ls_return = "执行失败";
}
lbljg.Text = ls_return;
}
示例2: Button_Save_Click
//保存
protected void Button_Save_Click(object sender, EventArgs e)
{
if (this.Session["hyuid"].ToString() == "")
this.Response.Redirect("../login.aspx");
string ls_tip = "设置成功,系统将自动转至首页!";
//新文档时
HyoaClass.Hyoa_mystyle Hyoa_mystyle = new HyoaClass.Hyoa_mystyle();
if (this.txtdocid.Value == "")
{
HyoaClass.Hyoa_global Hyoa_global = new HyoaClass.Hyoa_global();
Hyoa_mystyle.ID = Hyoa_global.GetRandom();
Hyoa_mystyle.hy_userid = this.txtuserid.Text;
Hyoa_mystyle.hy_style = this.ddlhy_style.SelectedValue.ToString();
Hyoa_mystyle.Insert();
}
else
{
Hyoa_mystyle.ID = this.txtdocid.Value;
Hyoa_mystyle.hy_userid = this.txtuserid.Text;
Hyoa_mystyle.hy_style = this.ddlhy_style.SelectedValue.ToString();
Hyoa_mystyle.Update();
}
Session["mystyle"] = ddlhy_style.SelectedValue.ToString();
Response.Write("<script>alert('" + ls_tip + "');window.top.location='/'</script>");
}
示例3: CheckfmMainInput
//保存或提交时的JS代码(判断是否必填项),动态架构 Written by xf 20110515
public string CheckfmMainInput()
{
string ls_mid = "";
if (this.Request.QueryString["mid"] != null)
{
ls_mid = this.Request.QueryString["mid"].ToString();
if (ls_mid.Contains(","))
ls_mid = ls_mid.Substring(0, ls_mid.IndexOf(","));
}
string ls_tableid = "";
if (this.Request.QueryString["tableid"] != null)
{
ls_tableid = this.Request.QueryString["tableid"].ToString();
if (ls_tableid.Contains(","))
ls_tableid = ls_tableid.Substring(0, ls_tableid.IndexOf(","));
}
string ls_return = "";
//如果是“可修改所有文档的权限人员”,则可以修改所有的字段,不需要提示是否必填了。
HyoaClass.Hyoa_global Hyoa_global = new HyoaClass.Hyoa_global();
if (Hyoa_global.isHaveRole("Role9995", Session["hyuid"].ToString()))
{
}
else
{
HyoaClass.Hyoa_flowfield Hyoa_flowfield = new HyoaClass.Hyoa_flowfield();
//根据模块ID和表单ID得到对应的配置字段
DataTable dt_gettablecolumns = Hyoa_flowfield.GetflowfieldsbyMudelidAndTableid(ls_mid, ls_tableid);
if (dt_gettablecolumns.Rows.Count > 0)
{
//判断是否必填
for (int i = 0; i < dt_gettablecolumns.Rows.Count; i++)
{
if (dt_gettablecolumns.Rows[i]["hy_required"].ToString() == "是")
{
if (dt_gettablecolumns.Rows[i]["hy_fieldtype"].ToString() == "文本" || dt_gettablecolumns.Rows[i]["hy_fieldtype"].ToString() == "多行文本" || dt_gettablecolumns.Rows[i]["hy_fieldtype"].ToString() == "文本加按钮" || dt_gettablecolumns.Rows[i]["hy_fieldtype"].ToString() == "多行文本加按钮" || dt_gettablecolumns.Rows[i]["hy_fieldtype"].ToString() == "日期" || dt_gettablecolumns.Rows[i]["hy_fieldtype"].ToString() == "口令")
ls_return += "try{if(fm." + dt_gettablecolumns.Rows[i]["hy_fieldid"].ToString() + ".value==\"\"){alert(\"" + dt_gettablecolumns.Rows[i]["hy_fieldname"].ToString() + "不能为空!\");fm." + dt_gettablecolumns.Rows[i]["hy_fieldid"].ToString() + ".focus();return false;}}catch(err){}";
if (dt_gettablecolumns.Rows[i]["hy_fieldtype"].ToString() == "数值")
ls_return += "try{if(fm." + dt_gettablecolumns.Rows[i]["hy_fieldid"].ToString() + ".value==\"\"){alert(\"" + dt_gettablecolumns.Rows[i]["hy_fieldname"].ToString() + "不能为空!\");fm." + dt_gettablecolumns.Rows[i]["hy_fieldid"].ToString() + ".focus();return false;}if(isNaN(fm." + dt_gettablecolumns.Rows[i]["hy_fieldid"].ToString() + ".value)){alert(\"" + dt_gettablecolumns.Rows[i]["hy_fieldname"].ToString() + "必须为数值!\");fm." + dt_gettablecolumns.Rows[i]["hy_fieldid"].ToString() + ".focus();return false}}catch(err){}";
if (dt_gettablecolumns.Rows[i]["hy_fieldtype"].ToString() == "对话框列表")
ls_return += "try{if(fm." + dt_gettablecolumns.Rows[i]["hy_fieldid"].ToString() + ".selectedIndex==0){alert(\"请选择" + dt_gettablecolumns.Rows[i]["hy_fieldname"].ToString() + "!\");fm." + dt_gettablecolumns.Rows[i]["hy_fieldid"].ToString() + ".focus();return false;}}catch(err){}";
//if (dt_gettablecolumns.Rows[i]["hy_fieldtype"].ToString() == "复选框")
// ls_return += "try{var ls_select=\"\";var obj1=document.getElementsById(\"" + dt_gettablecolumns.Rows[i]["hy_fieldid"].ToString() + "\");for(var i = 0; i < obj1.length; i++){if(obj1[i].checked){if(ls_select==\"\"){ls_select = obj1[i].value;}else{ls_select=ls_select+\"#\"+obj1[i].value;}}}if(ls_select==\"\"){alert('请选择" + dt_gettablecolumns.Rows[i]["hy_fieldname"].ToString() + "!');return false;}}catch(err){}";
//if (dt_gettablecolumns.Rows[i]["hy_fieldtype"].ToString() == "单选框")
// ls_return += "try{var ls_select=\"\";var obj1=document.getElementsById(\"" + dt_gettablecolumns.Rows[i]["hy_fieldid"].ToString() + "\");for(var i = 0; i < obj1.length; i++){if(obj1[i].checked){if(ls_select==\"\"){ls_select = obj1[i].value;}else{ls_select=ls_select+\"#\"+obj1[i].value;}}}if(ls_select==\"\"){alert('请选择" + dt_gettablecolumns.Rows[i]["hy_fieldname"].ToString() + "!');return false;}}catch(err){}";
}
//哪个字段是待办事宜提醒的字段 edited by xf 20140625
if (dt_gettablecolumns.Rows[i]["hy_ifdbsybt"].ToString() == "是")
{
ls_return += "try{var d=document.getElementById('" + dt_gettablecolumns.Rows[i]["hy_fieldid"].ToString() + "');if(d==null||typeof(d.value)=='undefined'){}else{document.getElementById('hy_bt').value=d.value;}}catch(err){}";
}
}
}
}
return ls_return;
}
示例4: Page_Load
protected void Page_Load(object sender, EventArgs e)
{
if (this.Session["hyuid"].ToString() == "")
this.Response.Redirect("../login.aspx");
if (!this.IsPostBack)
{
if (this.Request.QueryString["docid"] != null)
{
string ls_docid = this.Request.QueryString["docid"].ToString();
string ls_tableid = this.Request.QueryString["tableid"].ToString();
//根据文档ID得到记录
HyoaClass.Hyoa_global Hyoa_global = new HyoaClass.Hyoa_global();
string sql = "select * from hyc_" + ls_tableid + " where DOCID='" + ls_docid + "'";
DataTable dt = Hyoa_global.GetDataTable(sql);
string ls_flowid, ls_flowname, ls_mudelid, ls_curtacheid, ls_curtachename;
if (dt.Rows.Count > 0)
{
ls_flowid = dt.Rows[0]["hy_flowid"].ToString(); //流程ID
ls_flowname = dt.Rows[0]["hy_flowname"].ToString(); //流程名称
ls_mudelid = dt.Rows[0]["hy_mudelid"].ToString(); //模块ID
ls_curtacheid = dt.Rows[0]["hy_curtacheid"].ToString(); //当前环节ID
ls_curtachename = dt.Rows[0]["hy_curtachename"].ToString(); //当前环节名称
dt.Clear();
HyoaClass.Hyoa_cklc Hyoa_cklc_CurrnetDocFlow = new HyoaClass.Hyoa_cklc();
//制作表格式信息
this.txtCurrnetDocFlow.Value = Hyoa_cklc_CurrnetDocFlow.GetCurrnetDocFlow(ls_docid,ls_flowid,ls_flowname,ls_mudelid,ls_curtacheid,ls_curtachename);
//制作流程图
this.txtFlowXML.Value = Hyoa_cklc_CurrnetDocFlow.GetXmlBody(ls_docid, ls_flowid, ls_flowname, ls_mudelid, ls_curtacheid, ls_curtachename);
}
}
}
}
示例5: Button_Save_Click
//保存
protected void Button_Save_Click(object sender, EventArgs e)
{
if (this.Session["hyuid"].ToString() == "")
this.Response.Redirect("../login.aspx");
string ls_tip = "提交成功!";
string ls_insert = "";
HyoaClass.Hyoa_global Hyoa_global = new HyoaClass.Hyoa_global();
ls_insert = "insert into hyp_gzlxdhf (id,hy_jsrdocid,hy_fsrdocid,hy_userid,hy_username,hy_deptid,hy_deptname,hy_time,hy_body,hy_ip,hy_ifshow)";
ls_insert += " values ('" + Hyoa_global.GetRandom() + "','" + this.txtid.Value + "','" + this.txtdocid.Value + "','" + this.Session["hyuid"].ToString() + "'";
ls_insert += ",'" + this.Session["hyuname"].ToString() + "','" + this.Session["hydeptid"].ToString() + "','" + this.Session["hydeptname"].ToString() + "'";
ls_insert += ",'" + System.DateTime.Now.ToString() + "','" + this.txthfnr.Text + "','" + HttpContext.Current.Request.UserHostAddress + "','')";
Hyoa_global.ExcuteSQL(ls_insert);
//收件中置为已回复
string ls_update;
ls_update = "update hyp_wjcd set hy_ifyhf='1' where ID='" + this.txtid.Value + "' ";
Hyoa_global.ExcuteSQL(ls_update);
//处理完成后的提示及跳转
Response.Write("<script>alert('" + ls_tip + "');window.location='" + this.txturl.Value + "'</script>");
}
示例6: Button_Save_Click
////保存
protected void Button_Save_Click(object sender, EventArgs e)
{
if (this.Session["hyuid"].ToString() == "")
this.Response.Redirect("../login.aspx");
string ls_tip = "发表文章成功!";
HyoaClass.Hyoa_boke_main Hyoa_boke_main = new HyoaClass.Hyoa_boke_main();
HyoaClass.Hyoa_global Hyoa_global = new HyoaClass.Hyoa_global();
Hyoa_boke_main.DOCID = Hyoa_global.GetRandom();
Hyoa_boke_main.hy_djrid = this.Session["hyuid"].ToString();
Hyoa_boke_main.hy_djrname = this.Session["hyuname"].ToString();
Hyoa_boke_main.hy_djsj = System.DateTime.Now.ToString();
Hyoa_boke_main.hy_bt = this.txtbt.Text;
Hyoa_boke_main.hy_content = this.Content.Value;
Hyoa_boke_main.hy_visits = 0;
if (Hyoa_boke_main.Insert() == true)
{
Response.Write("<script>alert('" + ls_tip + "');window.location='" + this.txturl.Value + "'</script>");
}
else
{
this.Response.Write("<script>alert('发表文章失败,请联系管理员!')</script>");
}
}
示例7: Page_Load
protected void Page_Load(object sender, EventArgs e)
{
string ls_docids="";
string ls_filepath="";
if (this.Request.QueryString["docids"] != null)
{
ls_docids = this.Request.QueryString["docids"].ToString();
}
string[] lv_docids;
lv_docids = ls_docids.Split(',');
HyoaClass.Hyoa_fileatt Hyoa_fileatt = new HyoaClass.Hyoa_fileatt();
HyoaClass.Hyoa_global Hyoa_global = new HyoaClass.Hyoa_global();
DataTable dt = new DataTable();
for (int j = 0; j < lv_docids.Length; j++)
{
dt = Hyoa_fileatt.Getfileatt(lv_docids[j]);
if (dt.Rows[0]["hy_userid"].ToString() == Session["hyuid"].ToString() || Hyoa_global.isHaveRole("Role9995", Session["hyuid"].ToString()))
{
ls_filepath = Server.MapPath("~/") + dt.Rows[0]["hy_filepath"].ToString();
//this.Response.Write(ls_filepath);
//return;
if (File.Exists(ls_filepath))
{
System.IO.File.Delete(ls_filepath);
}
Hyoa_fileatt.ID = lv_docids[j];
Hyoa_fileatt.Delete();
}
dt.Clear();
}
this.Response.Write("aaa");
return ;
}
示例8: hy_nav
//左侧导航(一级及以下目录)
public string hy_nav()
{
string hy_nav = "";
if (Request.QueryString["mlid"] != null)
{
this.ls_mlid = Request.QueryString["mlid"].ToString();
this.ls_mlid_fir = Request.QueryString["mlid"].ToString();
if (this.ls_mlid_fir.Length > 3)
{
this.ls_mlid_fir = this.ls_mlid_fir.Substring(0, 3);
}
}
HyoaClass.Hyoa_global Hyoa_global = new HyoaClass.Hyoa_global();
//得到一级目录
HyoaClass.Hyoa_ml Hyoa_ml = new HyoaClass.Hyoa_ml();
DataTable dt = Hyoa_ml.GetFirstmls();
if (dt.Rows.Count > 0)
{
string ls_flag1 = "0"; //无权限
int j = 0;
for (int i = 0; i < dt.Rows.Count; i++)
{
ls_flag1 = "0";
//输出一级
if (dt.Rows[i]["hy_role"].ToString() == "" || dt.Rows[i]["hy_role"] == null)
{
ls_flag1 = "1"; //有权限(没有设置role)
}
else
{
if (Hyoa_global.isHaveRole(dt.Rows[i]["hy_role"].ToString(), Session["hyuid"].ToString()))
{
ls_flag1 = "1"; //有权限
}
}
if (dt.Rows[i]["hy_ifqy"].ToString() != "是")
{
//未启用,直接赋为无权限
ls_flag1 = "0";
}
if (ls_flag1 == "1")
{
if (this.ls_mlid_fir == "")
{
this.ls_mlid_fir = dt.Rows[i]["MLID"].ToString(); //如果ls_mlid_fir还是空值则表示URL没有传过来参数,则显示第一个能显示的一级栏目
}
if (this.ls_mlid_fir == dt.Rows[i]["MLID"].ToString())
{
hy_nav += "<div title=\"<img src=" + dt.Rows[i]["hy_pic"].ToString() + " /> " + dt.Rows[i]["MLName"].ToString() + "\" iconcss=\"menu-icon-model\" class=\"l-scroll\" >";
hy_nav += "<ul id=\"global_channel_tree" + (j + 1).ToString() + "\" style=\"margin-top: 3px;\">";
hy_nav += GetSecMl(dt.Rows[i]["MLID"].ToString());
hy_nav += "</ul>";
hy_nav += "</div>";
j += 1;
}
}
}
}
return hy_nav;
}
示例9: Button_Save_Click
////保存
protected void Button_Save_Click(object sender, EventArgs e)
{
if (this.Session["hyuid"].ToString() == "")
this.Response.Redirect("../login.aspx");
string ls_tip = "评论成功!";
HyoaClass.Hyoa_boke_reback Hyoa_boke_reback = new HyoaClass.Hyoa_boke_reback();
HyoaClass.Hyoa_global Hyoa_global = new HyoaClass.Hyoa_global();
Hyoa_boke_reback.DOCID = Hyoa_global.GetRandom();
Hyoa_boke_reback.hy_fatherid = this.txtfatherid.Value;
Hyoa_boke_reback.hy_content = this.Content.Value;
Hyoa_boke_reback.hy_djsj = System.DateTime.Now.ToString();
Hyoa_boke_reback.hy_djrid = this.Session["hyuid"].ToString();
Hyoa_boke_reback.hy_djrname = this.Session["hyuname"].ToString();
string userip = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
if (userip == null || userip == "")
{
userip = Request.ServerVariables["REMOTE_ADDR"]; //得到客户端IP
}
Hyoa_boke_reback.hy_ip = userip;
if (Hyoa_boke_reback.Insert() == true)
{
Response.Write("<script>alert('" + ls_tip + "');window.location='" + this.txturl.Value + "'</script>");
}
else
{
this.Response.Write("<script>alert('发表评论失败,请联系管理员!')</script>");
}
}
示例10: Button_Save_Click
//保存
protected void Button_Save_Click(object sender, EventArgs e)
{
if (this.Session["hyuid"].ToString() == "")
this.Response.Redirect("../login.aspx");
string ls_tip = "保存成功!";
string ls_attsize = "";
string str_path = "";
string lspath = "";
string lsguid = "";
string lsurl = "";
string lsfilename = "";
string lshy_fatherfield = "";
lsfilename = FileUpload1.FileName;
HyoaClass.Hyoa_fileatt Hyoa_fileatt = new HyoaClass.Hyoa_fileatt();
HyoaClass.Hyoa_global Hyoa_global = new HyoaClass.Hyoa_global();
if (lsfilename != "") //attsize
{
lshy_fatherfield = "";
ls_attsize = System.Convert.ToString(System.Convert.ToDouble(System.Convert.ToInt32(System.Convert.ToDouble(FileUpload1.PostedFile.ContentLength.ToString()) / 1024 / 1024 * 1000)) / 1000);//附件的大小
lsguid = Hyoa_global.GetRandom();
System.Console.WriteLine(lsguid);
//SaveCommon(ls_path, ls_attsize, lsguid);
//将附件上传到服务器目录下
lspath = Server.MapPath("~/");//虚拟目录的位置
lsurl = "fileatt\\" + lsguid; //存放的文件夹
Directory.CreateDirectory(lspath + "\\" + lsurl);
str_path = lspath + "\\" + lsurl + "\\" + lsfilename;
FileUpload1.SaveAs(str_path);
Hyoa_fileatt.ID = lsguid;
Hyoa_fileatt.hy_fatherid = this.txtfatherid.Value;
if (this.txtfilename.Text == "")
{
Hyoa_fileatt.hy_filename = lsfilename;
}
else
{
Hyoa_fileatt.hy_filename = this.txtfilename.Text;
}
Hyoa_fileatt.hy_filepath = lsurl + "\\" + lsfilename;
Hyoa_fileatt.hy_filesize = ls_attsize;
Hyoa_fileatt.hy_userid = this.Session["hyuid"].ToString();
Hyoa_fileatt.hy_djsj = System.DateTime.Now.ToString();
if (this.Request.QueryString["fatherfield"] != null)
{
lshy_fatherfield = this.Request.QueryString["fatherfield"].ToString(); ////父文档配置的域名
}
Hyoa_fileatt.hy_fatherfield = lshy_fatherfield;
Hyoa_fileatt.Insert();
}
else
{
this.Response.Write("<script>alert('请选择要上传的文件!');</script>");
}
Response.Write("<script>alert('" + ls_tip + "');var lsurl = window.location.href;window.location = lsurl;window.opener.document.getElementById('btn_sxfj').onclick(); </script>");
}
示例11: Page_Load
protected void Page_Load(object sender, EventArgs e)
{
string ls_value1 = "";
string ls_value2 = "";
if (this.Request.QueryString["lsvalue1"] != null)
{
ls_value1 = this.Request.QueryString["lsvalue1"].ToString(); //类别
}
if (this.Request.QueryString["lsvalue2"] != null)
{
ls_value2 = this.Request.QueryString["lsvalue2"].ToString(); //年份
}
//Response.Write(ls_value2);
HyoaClass.Hyoa_global Hyoa_global = new HyoaClass.Hyoa_global();
string lssql = "select hyc_lsh from hyc_TableLsh where hyc_lb='" + ls_value1 + "' and hyc_nf='" + ls_value2 + "'";
//Response.Write(lssql);
DataTable dt = Hyoa_global.GetDataTable(lssql);
if (dt.Rows.Count > 0)
{
this.Response.Write(dt.Rows[0][0].ToString());
}
else
{
this.Response.Write("1");
}
}
示例12: Button_Save_Click
//保存
protected void Button_Save_Click(object sender, EventArgs e)
{
if (this.Session["hyuid"].ToString() == "")
this.Response.Redirect("../login.aspx");
string ls_tip = "保存成功!";
//新文档时
HyoaClass.Hyoa_global Hyoa_global = new HyoaClass.Hyoa_global();
HyoaClass.Hyoa_bq Hyoa_bq = new HyoaClass.Hyoa_bq();
if (this.txtop.Value == "modify")
{
Hyoa_bq.hy_userid = this.txtdjrid.Value;
Hyoa_bq.hy_body = this.txtbody.Text;
Hyoa_bq.hy_datetime = System.DateTime.Now.ToString();
Hyoa_bq.hy_tag = "";
Hyoa_bq.Update();
}else{
Hyoa_bq.hy_userid = this.txtdjrid.Value;
Hyoa_bq.hy_body = this.txtbody.Text;
Hyoa_bq.hy_datetime = System.DateTime.Now.ToString();
Hyoa_bq.hy_tag = "";
Hyoa_bq.Insert();
}
Response.Write("<script>alert('" + ls_tip + "');window.location='main_bq.aspx?op=modify'</script>");
}
示例13: Button_Save_Click
//保存
protected void Button_Save_Click(object sender, EventArgs e)
{
if (this.Session["hyuid"].ToString() == "")
this.Response.Redirect("../login.aspx");
string ls_tip = "保存成功!";
//新文档时
HyoaClass.Hyoa_global Hyoa_global = new HyoaClass.Hyoa_global();
HyoaClass.Hyoa_publicidea Hyoa_publicidea = new HyoaClass.Hyoa_publicidea();
if (this.txtop.Value == "add")
{
Hyoa_publicidea.ID = Hyoa_global.GetRandom();
Hyoa_publicidea.hy_idea = this.txtname.Value;
Hyoa_publicidea.hy_sort = System.Int32.Parse(this.txtsort.Value);
Hyoa_publicidea.Insert();
}
else
{
Hyoa_publicidea.ID = this.txtdocid.Value;
Hyoa_publicidea.hy_idea = this.txtname.Value;
Hyoa_publicidea.hy_sort = System.Int32.Parse(this.txtsort.Value);
Hyoa_publicidea.Update();
}
//处理完成后的提示及跳转
if (this.txtifpop.Value == "")
{
Response.Write("<script>alert('" + ls_tip + "');window.location='" + this.txturl.Value + "'</script>");
}
else
{
Response.Write("<script>alert('" + ls_tip + "');self.close();</script>");
}
}
示例14: Button_Save_Click
//保存
protected void Button_Save_Click(object sender, EventArgs e)
{
string ls_tip = "保存成功!";
try
{
string[] lv_jsrsysname, lv_jsrcnname;//接收人系统名、中文名
lv_jsrsysname = this.f_ReceivesysNameList.Value.ToString().Split('+');
lv_jsrcnname = this.f_ReceiveChNameList.Value.ToString().Split('+');
HyoaClass.Hyoa_sms Hyoa_sms = new HyoaClass.Hyoa_sms();
HyoaClass.Hyoa_global Hyoa_global = new HyoaClass.Hyoa_global();
HyoaClass.Hyoa_user Hyoa_user = new HyoaClass.Hyoa_user();
DataTable dt;
for (int i = 0; i < lv_jsrsysname.Length; i++)
{
Hyoa_sms.ID = Hyoa_global.GetRandom();
Hyoa_sms.DOCID = Hyoa_global.GetRandom();
Hyoa_sms.hy_fsrid = this.txtdjrid.Value;
Hyoa_sms.hy_fsrname = this.f_SendChName.Text;
Hyoa_sms.hy_fsrsjh = this.f_SendMobileNo.Text;
Hyoa_sms.hy_jsrid = lv_jsrsysname[i];
Hyoa_sms.hy_jsrname = lv_jsrcnname[i];
dt = Hyoa_user.Getuserallinfobyloginid(lv_jsrsysname[i]);
if (dt.Rows.Count > 0)
{
Hyoa_sms.hy_jsrsjh = dt.Rows[0]["hy_mobile"].ToString();
}
else
{
Hyoa_sms.hy_jsrsjh = lv_jsrsysname[i];
}
Hyoa_sms.hy_createtime = System.DateTime.Now.ToString();
Hyoa_sms.hy_from = "";
Hyoa_sms.hy_content = this.f_smsContents.Text;
Hyoa_sms.hy_isnowsend = 1;
Hyoa_sms.hy_takedate = "";
Hyoa_sms.hy_taketime = "";
Hyoa_sms.hy_state = 0;
Hyoa_sms.hy_tableid = "Mudelsms";
Hyoa_sms.Insert();
}
}
catch
{
}
finally
{
//处理完成后的提示及跳转
if (this.txtifpop.Value == "")
{
Response.Write("<script>alert('" + ls_tip + "');window.location='" + this.txturl.Value + "'</script>");
}
else
{
Response.Write("<script>alert('" + ls_tip + "');self.close();</script>");
}
}
}
示例15: Button_Save_Click
//保存
protected void Button_Save_Click(object sender, EventArgs e)
{
HyoaClass.Hyoa_global Hyoa_global = new HyoaClass.Hyoa_global();
HyoaClass.Hyoa_roleuser Hyoa_roleuser = new HyoaClass.Hyoa_roleuser();
////---增加模块权限-------
if (this.fdAddRoleid.Value != "")
{
string[] v_AddRoleid = this.fdAddRoleid.Value.Split(',');
for (var i = 0; i < v_AddRoleid.Length; i++)
{
Hyoa_roleuser.ID = Hyoa_global.GetRandom();
Hyoa_roleuser.hy_roleid = v_AddRoleid[i].ToString();
Hyoa_roleuser.hy_userid = this.txtuserid.Value;
Hyoa_roleuser.Insert();
}
}
////---删除模块权限-------
if (this.fdDelRoleid.Value != "")
{
string[] v_DelRoleid = this.fdDelRoleid.Value.Split(',');
for (var i = 0; i < v_DelRoleid.Length; i++)
{
Hyoa_roleuser.Deletebyroleidanduserid(v_DelRoleid[i].ToString(), this.txtuserid.Value);
}
}
HyoaClass.Hyoa_flowtacheuser Hyoa_flowtacheuser = new HyoaClass.Hyoa_flowtacheuser();
////---增加流程权限-------
if (this.fdAddFlowTacheid.Value != "")
{
string[] v_AddFlowTacheid = this.fdAddFlowTacheid.Value.Split(',');
for (var i = 0; i < v_AddFlowTacheid.Length; i++)
{
Hyoa_flowtacheuser.ID = Hyoa_global.GetRandom();
Hyoa_flowtacheuser.hy_flowid = v_AddFlowTacheid[i].ToString().Substring(0,v_AddFlowTacheid[i].ToString().IndexOf('^'));
Hyoa_flowtacheuser.hy_tacheid = v_AddFlowTacheid[i].ToString().Substring(v_AddFlowTacheid[i].ToString().IndexOf('^')+1, (v_AddFlowTacheid[i].ToString().Length - v_AddFlowTacheid[i].ToString().IndexOf('^')-1));
Hyoa_flowtacheuser.hy_userid = this.txtuserid.Value;
Hyoa_flowtacheuser.Insert();
}
}
//---删除流程权限-------
if (this.fdDelFlowTacheid.Value != "")
{
string[] v_DelFlowTacheid = this.fdDelFlowTacheid.Value.Split(',');
string ls_flowid;
string ls_tacheid;
for (var i = 0; i < v_DelFlowTacheid.Length; i++)
{
ls_flowid = v_DelFlowTacheid[i].ToString().Substring(0, v_DelFlowTacheid[i].ToString().IndexOf('^'));
ls_tacheid = v_DelFlowTacheid[i].ToString().Substring(v_DelFlowTacheid[i].ToString().IndexOf('^') + 1, (v_DelFlowTacheid[i].ToString().Length - v_DelFlowTacheid[i].ToString().IndexOf('^') - 1));
Hyoa_flowtacheuser.Deletebyroleidtacheiduserid(ls_flowid, ls_tacheid, this.txtuserid.Value);
}
}
Response.Write("<script>alert('保存成功!');self.close();</script>");
}