摘要:
this.RegisterStartupScript("show",""); 阅读全文
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 区别:setTimeout("function",time);//设置一个超时对象,只执行一次,无周期 setInterval("function"... 阅读全文
摘要:
FileStream fs = new FileStream(url, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
StreamReader sr = new StreamReader(fs, System.Text.Encoding.Default); 阅读全文
摘要:
function GetQueryString(name)
{
var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)");
var r = window.location.search.substr(1).match(reg);
if (r!=null) return unescape(r[2]); return null;
} 阅读全文
摘要:
string actionUrl = Request.RawUrl.ToString();
actionUrl = Server.UrlEncode(Request.RawUrl.ToString()); 阅读全文
摘要:
在一个多屏的页面,如用repeater绑定table的方法,下拉框选择一项页面都会闪,并且回到页面头部,很不利于查看,如何是页面保持在table处不闪动呢? 可以简单的想到显示与隐藏的方法,将所有下拉框需要绑定的table都显示,然后控制显示与隐藏table达到选择对应下来数据的table。 比较好的方法当然是用ajax动态的根据ddl里的数据改变table里的值,不过做起来也比较麻烦。 具体做... 阅读全文
摘要:
//显示搜索框
function showHide(id, on)
{
var more=document.getElementById(id);
more.style.display=(on ? "inline" : "none");
} 阅读全文
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->using System; using System.Web.UI; using System.Text; using System.Text.RegularExpressions; using Sy... 阅读全文