上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 37 下一页
摘要: 使用modal窗口时,页面会被cache,当然这是因为性能的缘故,无论在页面中如何设置no-cache,expires=-1, window.location.reload等,都不会被刷新. 除非是服务器调用__doPostBack在网上搜索了一下,发现一个好的方法,就是在reload的URL中添加随机数,这样就不会再被cache了.window.location.href = window.lo... 阅读全文
posted @ 2007-05-17 11:38 margiex 阅读(453) 评论(2) 推荐(0) 编辑
摘要: 从一个普通窗口A中弹出一个modal window B,然后再从此modal窗口中弹出新的一个非modal的window C,此时如果A窗口是通过form认证的,则在窗口中要求重新登录, 初步估计是因为modal弹出非modal窗口时不包含认证的context.解决办法就是从modal窗口弹出窗口时,继续使用modal窗口. 阅读全文
posted @ 2007-05-17 11:32 margiex 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 首先创建DLL库,代码如下:using System;using System.Runtime.InteropServices;namespace ANamespace { // 定义COM组件的接口 public interface ASignatures { string FName(); string SName(); int Age { get;} } // 表... 阅读全文
posted @ 2007-05-08 18:02 margiex 阅读(1083) 评论(2) 推荐(0) 编辑
摘要: 固定表头的CSS:thead th, thead th.locked {font-size: 14px;font-weight: bold;text-align: center;background-color: navy;color: white;border-right: 1px solid silver;position:relative;cursor: default; } thead t... 阅读全文
posted @ 2007-05-01 20:08 margiex 阅读(4523) 评论(0) 推荐(0) 编辑
摘要: aspx中定义一个js函数:其中aspx中form名称为"myForm".添加三个隐藏域: protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRo... 阅读全文
posted @ 2007-04-24 23:13 margiex 阅读(2100) 评论(1) 推荐(0) 编辑
摘要: 在aspx中定义javascript事件,判断按键是否为上下键; 然后在gridview的rowDataBound中, 添加处理按键的事件处理函数和使用鼠标点击某行时的选中事件. protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType =... 阅读全文
posted @ 2007-04-24 22:16 margiex 阅读(1509) 评论(5) 推荐(0) 编辑
摘要: /Files/margiex/FlashControl.zip 阅读全文
posted @ 2007-04-23 20:26 margiex 阅读(496) 评论(0) 推荐(0) 编辑
摘要: 经常在listbox中的数据项太长而不能看完,系统本身是有纵向滚动条,只能是对多项数据项有效,而如果太长,则只能自己解决,一种解决办法:定义一个div来滚动. 阅读全文
posted @ 2007-04-19 10:08 margiex 阅读(3091) 评论(0) 推荐(0) 编辑
摘要: 这两天看了三篇介绍文章: An Extended Look at the Profile Object - Part 1http://aspalliance.com/721 An Extended Look at the Profile Object - Part 2http://aspalliance.com/731 An Extended Look at the Profile Object ... 阅读全文
posted @ 2007-04-15 11:46 margiex 阅读(666) 评论(1) 推荐(0) 编辑
摘要: 步骤:1. 建立一个WEB站点工程,创建一个ascx控件页,再创建一个aspx页面,将ascx放到aspx页面上,保证程序能正常运行;2. 删除aspx文件, 点build->publish web site菜单, 在点出的窗口中: 取消选择:Allow this precompiled to be updatable,这样ascx页面的内容将会被编译到DLL中.3. 选中Use fixed na... 阅读全文
posted @ 2007-04-14 19:45 margiex 阅读(357) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 37 下一页