protected void Button1_Click(object sender, EventArgs e) { if (ZWL.DBUtility.DbHelperSQL.GetSHSL("select YinZhangMiMa from ERPYinZhang where ImgPath='" + this.DropDownList1.SelectedValue.ToString() + "'") == this.TextBox1.Text) { //写入印章使用日志 ZWL.BLL.ERPYinZhangLog MyModel = new ZWL.BLL.ERPYinZhangLog(); MyModel.DoSomething = "用户使用印章:" + this.DropDownList1.SelectedItem.Text; MyModel.IpStr = System.Web.HttpContext.Current.Request.UserHostAddress.ToString(); MyModel.TimeStr = DateTime.Now; MyModel.TypeStr = ZWL.DBUtility.DbHelperSQL.GetSHSL("select YinZhangLeiBie from ERPYinZhang where ImgPath='" + this.DropDownList1.SelectedValue.ToString() + "'"); MyModel.UserName = ZWL.Common.PublicMethod.GetSessionValue("UserName"); MyModel.Add(); //Response.Write("<script language=javascript>window.returnValue =\"" + this.DropDownList1.SelectedValue.ToString() + "\";window.close();</script>"); Response.Write("<script language=javascript>if(window.opener != undefined){window.opener.returnValue=\"" + this.DropDownList1.SelectedValue.ToString() + "\";window.opener.close();}else{window.returnValue =\"" + this.DropDownList1.SelectedValue.ToString() + "\";}window.close();</script>"); //for chrome //if (window.opener != undefined) //{ //window.opener的值在谷歌浏览器下面不为空,在IE/火狐下面是未定义,由此判断是否是谷歌浏览器 //window.opener.returnValue = flag; //谷歌浏览器下给返回值赋值的方法window.opener.close(); //这里必须关闭一次,否则执行下面的window.close()无法关闭弹出窗口,因为谷歌浏览器下弹出窗口是个新的window //} //else //{ // window.returnValue = flag; //这种赋值方法兼容IE/火狐,但不支持谷歌浏览器 //} //window.close(); } else { Response.Write("<script>alert('印章密码错误!');</script>"); Response.Write("<script language=javascript> window.returnValue =\"\";</script>"); } }
public void DataBindToGridview() { ZWL.BLL.ERPYinZhangLog MyRiZhi = new ZWL.BLL.ERPYinZhangLog(); GVData.DataSource = MyRiZhi.GetList("UserName like '%" + this.TextBox2.Text.Trim() + "%' and DoSomething like '%" + this.TextBox1.Text.Trim() + "%' and TypeStr='" + Request.QueryString["Type"].ToString() + "' order by ID desc"); GVData.DataBind(); LabPageSum.Text = Convert.ToString(GVData.PageCount); LabCurrentPage.Text = Convert.ToString(((int)GVData.PageIndex + 1)); this.GoPage.Text = LabCurrentPage.Text.ToString(); }
public void DataBindToGridview() { GVData.PageSize = AspNetPager1.PageSize; GVData.PageIndex = AspNetPager1.CurrentPageIndex - 1; ZWL.BLL.ERPYinZhangLog MyRiZhi = new ZWL.BLL.ERPYinZhangLog(); DataSet ds = MyRiZhi.GetList("UserName like '%" + this.TextBox2.Text.Trim() + "%' and DoSomething like '%" + this.TextBox1.Text.Trim() + "%' and TypeStr='" + Request.QueryString["Type"].ToString() + "' order by ID desc"); GVData.DataSource = ds; GVData.DataBind(); AspNetPager1.RecordCount = ds.Tables[0].Rows.Count; }
protected void Button1_Click(object sender, EventArgs e) { if (ZWL.DBUtility.DbHelperSQL.GetSHSL("select YinZhangMiMa from ERPYinZhang where ImgPath='" + this.DropDownList1.SelectedValue.ToString() + "'") == this.TextBox1.Text) { //写入印章使用日志 ZWL.BLL.ERPYinZhangLog MyModel = new ZWL.BLL.ERPYinZhangLog(); MyModel.DoSomething = "用户使用印章:" + this.DropDownList1.SelectedItem.Text; MyModel.IpStr = System.Web.HttpContext.Current.Request.UserHostAddress.ToString(); MyModel.TimeStr = DateTime.Now; MyModel.TypeStr = ZWL.DBUtility.DbHelperSQL.GetSHSL("select YinZhangLeiBie from ERPYinZhang where ImgPath='" + this.DropDownList1.SelectedValue.ToString() + "'"); MyModel.UserName = ZWL.Common.PublicMethod.GetSessionValue("UserName"); MyModel.Add(); Response.Write("<script language=javascript>window.parent[\"selectyinzhangCallback\"]('" + this.DropDownList1.SelectedValue.ToString() + "');</script>"); } else { Response.Write("<script>alert('印章密码错误!');</script>"); } }
protected void Button1_Click(object sender, EventArgs e) { if (ZWL.DBUtility.DbHelperSQL.GetSHSL("select YinZhangMiMa from ERPYinZhang where ImgPath='"+this.DropDownList1.SelectedValue.ToString()+"'") == this.TextBox1.Text) { //写入印章使用日志 ZWL.BLL.ERPYinZhangLog MyModel = new ZWL.BLL.ERPYinZhangLog(); MyModel.DoSomething = "用户使用印章:" + this.DropDownList1.SelectedItem.Text; MyModel.IpStr = System.Web.HttpContext.Current.Request.UserHostAddress.ToString(); MyModel.TimeStr = DateTime.Now; MyModel.TypeStr = ZWL.DBUtility.DbHelperSQL.GetSHSL("select YinZhangLeiBie from ERPYinZhang where ImgPath='" + this.DropDownList1.SelectedValue.ToString() + "'"); MyModel.UserName = ZWL.Common.PublicMethod.GetSessionValue("UserName"); MyModel.Add(); Response.Write("<script language=javascript>window.returnValue =\"" + this.DropDownList1.SelectedValue.ToString() + "\";window.close();</script>"); } else { Response.Write("<script>alert('印章密码错误!');</script>"); Response.Write("<script language=javascript> window.returnValue =\"\";</script>"); } }