asp-net
爱吃白菜
君子 小人 只在一念之间
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ASP.NET 页面跳转
带参: Response.Write(“<script language=’javascript’>window.location.href=’FQC302.aspx?XXX=CCC’;</script>”); 不带参: window.location.href=window.location.href原创 2017-07-13 14:22:18 · 224 阅读 · 0 评论 -
ORACLE 语句字段含有数字,按数字排序
gv_RowCreateed(…) { //鼠标移动到某行时,改变背景色 e.Row.Attributes.Add(“ommouseover”,”currentcolor=this.style.backgroundColor;this.style.backgroundColor=’#eaeaea’;”); //鼠标移走时恢复 e.Row.Attributes.Add(“onmouseout原创 2017-07-14 10:42:27 · 2305 阅读 · 0 评论 -
GridView 鼠标移动变色
gv_RowCreateed(…) { //鼠标移动到某行时,改变背景色 e.Row.Attributes.Add(“ommouseover”,”currentcolor=this.style.backgroundColor;this.style.backgroundColor=’#eaeaea’;”); //鼠标移走时恢复 e.Row.Attributes.Add(“onmouseout原创 2017-07-14 15:23:07 · 492 阅读 · 0 评论 -
ASP.NET DataList添加删除按钮
最优方法:使用LinkButton 弹出提示框:OnClientClick=”confirm()”; 传参:CommandArgument=’<%%>’ 多参数:’<% DataBinder.Eval()+DataBinder.Eval()%>’ 设置名称:CommandName=”Delete” 后台事件:DataList_ItemCommand(object source,Datali原创 2017-07-13 14:24:49 · 1664 阅读 · 0 评论 -
ReportViewer作为嵌套页给其他页面调用,如何设置跳转链接
跳转时需要去除本身网页框架,设置:Hyperlink Targer=”_self” 使用按钮跳转(在嵌套页面点击),链接增加:target=_self原创 2018-08-17 15:29:52 · 442 阅读 · 1 评论
分享