怎能笑的私藏(藏什么呀?还没有想好,乱堆!)

                                                                                                        ————怎能笑

2006年7月10日

javactript关闭窗体,刷新父窗体.......

摘要: //关闭,父窗口弹出对话框,子窗口直接关闭this.Response.Write("");//关闭,父窗口和子窗口都不弹出对话框,直接关闭this.Response.Write("");//弹出窗口刷新当前页面width=200 height=200菜单。菜单栏,工具条,地址栏,状态栏全没有this.Response.Write("");//弹出窗口刷新当前页面this.Response.Writ... 阅读全文

posted @ 2006-07-10 17:09 怎能笑的私藏(藏什么呀?还没有想好,乱堆!) 阅读(4967) 评论(3) 推荐(0) 编辑
把ip地址转化为ip 数据库中的数字

摘要: string ip = "61.132.12.1";string str[] = ip.Split('.');foreach(string s in str){ Response.Write(s);}http://singlepine.cnblogs.com/archive/2006/02/05/325670.html 阅读全文

posted @ 2006-07-10 09:08 怎能笑的私藏(藏什么呀?还没有想好,乱堆!) 阅读(297) 评论(0) 推荐(0) 编辑
web端定时访问数据库

摘要: protected void Application_Start(Object sender, EventArgs e){System.Timers.Timer t=new System.Timers.Timer(1000*10);//每10秒触发一次t.AutoReset=true;t.Enabled=true;t.Elapsed +=new System.Timers.ElapsedEvent... 阅读全文

posted @ 2006-07-10 09:00 怎能笑的私藏(藏什么呀?还没有想好,乱堆!) 阅读(204) 评论(0) 推荐(0) 编辑