摘要: 1)<meta http-equiv="refresh"content="10;url=跳转的页面">10表示间隔10秒刷新一次2)<script>window.location.reload(true);</script>如果是你要刷新某一个iframe就把window给换成frame的名字或ID号3)<script>window.navigate... 阅读全文
posted @ 2009-07-24 11:11 M.JQ 阅读(5851) 评论(1) 推荐(0)
摘要: using System;using System.Globalization;//namespace Project.ChinaDate{ ///<summary> /// 显示今天农历类 ///</summary>publicclass CNDate { private DateTime m_Date; //今天的日期privatereadonlyint cny... 阅读全文
posted @ 2009-07-23 17:56 M.JQ 阅读(214) 评论(0) 推荐(0)
摘要: //天干 private static string[] TianGan = { "甲", "乙", "丙", "丁", "戊", "己", "庚", "辛", "壬", "癸" }; //地支 private static string[] DiZhi = { "子", "丑", "寅", "卯", "辰", "巳", "午", "未", "申", "酉", "戌", "亥" }; //十二... 阅读全文
posted @ 2009-07-23 13:26 M.JQ 阅读(742) 评论(0) 推荐(1)
摘要: 1 添加IPLocation.dll到bin 添加引用2 添加ip数据库文件 QQWry.Dat 到项目3 调用方法代码分享string conn, ipstr, addstr=""; conn = Server.MapPath("inc/QQWry.Dat"); ipstr = TextBox1.Text.Trim(); try { addstr = IPLocation.IPLocation.... 阅读全文
posted @ 2009-07-17 16:47 M.JQ 阅读(401) 评论(1) 推荐(1)