控件使用
文章平均质量分 85
兵_哥哥
这个作者很懒,什么都没留下…
展开
-
repeater 排序
repeater实现排序功能(双击升序排列,再双击降序排列).原理很简单,在中加个Ondblclick,用它来触发一个LinkButton的服务器事件.LinkButton的服务器事件里重新对数据源进行排序.然后再绑定Repeater. 要实现,首先需要在HTML里面加个javascript函数和两个Hidden,一个用来储存要排序的字段,还有一个用来储存升序还是降序.(asc/desc) J转载 2012-02-20 15:49:30 · 1245 阅读 · 0 评论 -
ASPxGridView自定义分页,点击标题排序
使用ASPxGridView和ASPxPager,进行自定义分页。 前台代码:转载 2015-11-17 14:00:09 · 1215 阅读 · 0 评论 -
获取ASPxGridView 中的数据
1.取得控件值 using System.Collections.Generic; //取得当前控件值的集合 直接寻找控件的ID List keyValues = this.GridViewmethod.GetSelectedFieldValues("F_XXX");//控件的ID foreach (object key in keyValues)//循环遍历出来 {转载 2015-11-07 13:02:58 · 2664 阅读 · 0 评论 -
NET使用了UpdatePanel后如何弹出对话框!
在ajax中的UpdatePanel弹出对话窗,可以使用: ScriptManager.RegisterStartupScript(UpdatePanel1, this.GetType(), "alert", "alert('更新成功!')", true); 修改后跳到另一个页面中去时,可以使用: ScriptManager.RegisterStartupScript(UpdateP转载 2015-09-06 11:08:07 · 2375 阅读 · 0 评论 -
c# Repeater中CommandArgument传多个参数
"javascript:this.style.cursor='hand'" style="width:70px; line-height:20px;background-color:#CCCCCC;border:solid 1px #000000;"> "LinkButton1" CommandName="del" CommandArgument='' runat="server">删除转载 2015-02-06 16:43:22 · 1330 阅读 · 0 评论 -
fileupload 图片显示
前台 WebForm1 http://schemas.microsoft.com/intellisense/ie5"> Text="Button"> function a() { var o = document.getElementById(转载 2014-05-23 17:28:43 · 553 阅读 · 0 评论 -
触发Repeater中的Dropdownlist的SelectedIndexChanged如何获得Repeater的当前行
' Visible="false"> ------------------------------------转载 2013-08-23 17:33:18 · 1095 阅读 · 0 评论 -
ajax实现dropdownlist与datagrid或Repeater无联动刷新
Example http://schemas.microsoft.com/intellisense/ie5"> function load(state){ var drp2 = document.getElementById("DropDownList2"); for (i = drp2.length; i >= 0; i--){ drp2.optio转载 2013-07-19 16:43:39 · 463 阅读 · 0 评论 -
Repeater实现GridView编辑修改模式
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/lxy_abcde1190/archive/2008/05/30/2496589.aspx RepeaterTest.前台代码: http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> http://www.w3.org/1999/xht转载 2013-07-16 15:36:34 · 477 阅读 · 0 评论 -
aspxmenu 动态菜单
DevExpress 菜单控件ASPxMenu的使用 以前做网站导航,,直接在控件中创建几个Item,这种很死,导航菜单,不能控制, 今天花了一下午,搞这个动态导航菜单,终于找到了方法, 贴出来给大家看看, Namespace="DevExpress.Web.ASPxMenu" TagPrefix="dxm" %> http:转载 2012-08-03 20:35:39 · 2470 阅读 · 0 评论 -
在asp.net中实现可拖动列的table
在asp.net中实现可拖动列的table ===================================================================== //可拖动列的表格 var drag = false; var warea = false; //onmouseover function MouseOver(obj) { var va转载 2012-03-09 14:19:13 · 1021 阅读 · 0 评论 -
ASPxGridView控件常用示例五:显示Detail数据
本示例主要演示如何利用两个 ASPxGridView控件来显示主从数据。 C# 1 2 3 4 5 6 7 8 9 10 11 12 13 14 protected void Page_Load(object sender, EventArgs e)转载 2016-01-23 12:16:57 · 1254 阅读 · 0 评论