博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
学习笔记(在商飞项目里 1)
阅读量:6693 次
发布时间:2019-06-25

本文共 3449 字,大约阅读时间需要 11 分钟。

1、 table 每行 鼠标悬停和移出的样式变化: 二号楼 2、由1,我们可以对gridview行 鼠标悬停和移出的样式变化:  protected void gvBuildList_RowCreated(object sender, GridViewRowEventArgs e)        {            if (e.Row.RowType == DataControlRowType.DataRow)            {                try                {                    e.Row.Attributes.Add("onmouseover", "currentcolor = this.style.backgroundColor;this.style.backgroundColor='#F7FFF7';this.style.cursor='hand';");                    e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor = currentcolor;");                }                catch { }            }        }3 xml文件,删除节点的方法:                DataSet ds = new DataSet();                ds.ReadXml(Server.MapPath("XML/BuildList.xml"));                bool isHave = false;                foreach (DataRow drTemp in ds.Tables[0].Rows)                {                    if (drTemp["BuildText"].ToString().Equals(this.gvBuildList.Rows[e.RowIndex].Cells[0].Text))                    {                        drTemp.Delete();                        break;                    }                }                ds.WriteXml(Server.MapPath("XML/BuildList.xml")); 4 文本框中只能输入数字的js方法:function CheckTotalPrice(text){    text.value=text.value.replace(/[^\.\d]/g,'');    if(text.value.split('.').length>2)    {        text.value=text.value.split('.')[0]+'.'+text.value.split('.')[1];    }    else if(text.value.split('.').length==2)    {        text.value=text.value.split('.')[0] + '.'+text.value.split('.')[1].substr(0,2);    }}  
5 清除表单里所有TextBox里的值(该表单里有其它元素)
6 连接打印机,打印功能:实例 固定资产系统,asset/AssetBillQuery.aspx7 gridview 里,模板列里添加按钮,按钮出发后台事件的方法: 前台:按钮添加属性 CommandName="DeleteBill",值自己随意填写。
后台: protected void gvList_RowCommand(object sender, GridViewCommandEventArgs e) { switch (e.CommandName) { case "DeleteBill": this.DeleteBill(e.CommandArgument.ToString()); break; default: break; } }8 gridview 里,模板列里添加按钮,进行增删改操作的方法,可以用7的方法,也可以这样:
protected void gvList_RowEditing(object sender, GridViewEditEventArgs e) { AssetQueryBO bo = new AssetQueryBO(); AssetRegisterBill bill = bo.GetRegisterBill(this.gvList.Rows[e.NewEditIndex].Cells[0].Text); } protected void gvList_RowDeleting(object sender, GridViewDeleteEventArgs e) { OpenWebForm("./BillAssetList.aspx?BATCHNO=" + this.gvList.Rows[e.RowIndex].Cells[0].Text); } protected void gvList_RowUpdating(object sender, GridViewUpdateEventArgs e) { } protected void gvList_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e) { Response.Redirect("./AssetsBillExport.aspx?billNO=" + this.gvList.Rows[e.RowIndex].Cells[0].Text); }10 弹出模态对话框,页面上有回传操作,操作完后点击关闭按钮,发现关闭不了,解决方法为:在中加入

转载地址:http://vmcoo.baihongyu.com/

你可能感兴趣的文章
我的友情链接
查看>>
HA高可用集群基础概念和原理
查看>>
MySQL over函数的用法
查看>>
Linux命令(9):mkdir命令
查看>>
vmstat命令
查看>>
poj2245 Lotto
查看>>
我的友情链接
查看>>
Oracle版本升级
查看>>
sizeof 的使用(标记一下)
查看>>
第 四 十 天:关 于 正 则 的 一 些 小 用 法
查看>>
编程 -- awk
查看>>
2012 #3 Arcane Numbers
查看>>
python 列表模拟堆栰
查看>>
Linux-Centos5.3中文乱码问题解决
查看>>
linux分区学习[ CentOS ]
查看>>
aaa认证
查看>>
linux系统查找具体进程
查看>>
c#执行Oracle存储过程
查看>>
adb_安装软件
查看>>
廖雪峰官网学习js 字符串
查看>>