上一页 1 ··· 4 5 6 7 8 9 下一页
摘要: public static string fromNowToTheDate(DateTime theDate) { string FromNowToTheDate = ""; DateTime d1 = DateTime.Now; DateTime d2 = theDate; TimeSpan d3 = d2.Subtract(d1); FromNowToTheDate = d3.Days.ToString() + "天" + d3.Hours.ToString() + "小时" + d3.Minutes.ToString() + & 阅读全文
posted @ 2011-05-24 20:19 放哨De老鼠 阅读(243) 评论(0) 推荐(0) 编辑
摘要: public static string GetClientIP() { string result = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"]; if (null == result || result == String.Empty) { result = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"]; } if (null == result || result == String. 阅读全文
posted @ 2011-05-24 20:17 放哨De老鼠 阅读(288) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2011-05-22 16:26 放哨De老鼠 阅读(19) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2011-05-15 16:53 放哨De老鼠 阅读(199) 评论(1) 推荐(0) 编辑
摘要: /// 转换数字金额主函数(包括小数) /// /// 数字字符串 /// 转换成中文大写后的字符串或者出错信息提示字符串 public static string ConvertSum(string str) { if (!IsPositveDecimal(str)) return "输入的不是正数字!"; if (Double.Parse(str) > 999999999999.99) return "数字太大,无法换算,请输入一万亿元以下的金额"; char[] ch = new char[1]; ch[0] = '.'; / 阅读全文
posted @ 2011-05-13 19:32 放哨De老鼠 阅读(890) 评论(0) 推荐(1) 编辑
摘要: /// <summary> /// 一些常用的Js调用 /// <summary> public class Jscript { /// 弹出JavaScript小窗口 /// </summary> /// <param name="js">窗口信息</param> public static void Alert(string message) { #region string js = @"<Script language='JavaScript'> alert(' 阅读全文
posted @ 2011-05-13 19:04 放哨De老鼠 阅读(651) 评论(2) 推荐(3) 编辑
摘要: <asp:Repeater ID="rpt1" runat="server" onitemdatabound="rpt1_ItemDataBound"> <ItemTemplate> <asp:Label ID="lblzyc" runat="server" Text='<%#Eval("id") %>' Visible="false"></asp:Label> <h1 on 阅读全文
posted @ 2011-05-05 17:27 放哨De老鼠 阅读(1294) 评论(1) 推荐(1) 编辑
摘要: <asp:Repeater id="dlFileType" runat="server" onitemdatabound="dlFileType_ItemDataBound1"><ItemTemplate><asp:Label ID="lblzyc" runat="server" Text='<%#Eval("id") %>' Visible="false"></asp:Label> 阅读全文
posted @ 2011-05-05 17:26 放哨De老鼠 阅读(293) 评论(0) 推荐(0) 编辑
摘要: function check(){var txtseach=document.getElementById("txtseach");var big=window.document.getElementById("bigclass").value;var name=encodeURI(txtseach.value);if(txtseach.value.length<=0){alert('请输入关键字搜索');}else if(txtseach.value=='输入关键字……'){alert('请输入关键字搜索& 阅读全文
posted @ 2011-05-04 21:01 放哨De老鼠 阅读(507) 评论(0) 推荐(0) 编辑
摘要: <script language="javascript" type="text/javascript"> var arr= { "百度":["http://www.baidu.com","#ff0000"], "谷歌":["http://www.google.com","#00ff00"], "雅虎":["http://www.yahoo.com","#0000ff&quo 阅读全文
posted @ 2011-05-02 16:50 放哨De老鼠 阅读(608) 评论(0) 推荐(0) 编辑
摘要: public class ImgHelp { //public static string gif = "image/gif"; //public static string jpg = "image/pjpeg"; //public static string png = "image/x-png"; Page pag = new Page(); string[] Imgtype = { "image/gif", "image/pjpeg", "image/x-png" } 阅读全文
posted @ 2011-04-13 23:50 放哨De老鼠 阅读(750) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2011-04-04 16:18 放哨De老鼠 阅读(20) 评论(0) 推荐(0) 编辑
摘要: int num = 0; string sql = "insert into news(title,content,BigClassName,[user],infotime,hits,upfile) values(@title,@content,@ddl,@name,@time,@num,@filename)"; OleDbParameter[] para = new OleDbParameter[] { new OleDbParameter("@title",txttitle.Text), new OleDbParameter("@conte 阅读全文
posted @ 2011-04-04 15:51 放哨De老鼠 阅读(486) 评论(6) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2011-04-03 09:33 放哨De老鼠 阅读(109) 评论(1) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2011-04-02 17:47 放哨De老鼠 阅读(150) 评论(8) 推荐(1) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Data;using System.Configuration;using System.Web;using Microsoft.VisualBasic;using System.Security.Cryptography;using System.Security;using System.Text.RegularExpressions;using System.Text;using System.IO;namespace DataHelp 阅读全文
posted @ 2011-03-31 21:56 放哨De老鼠 阅读(313) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 去除超链接标记 /// </summary> /// <param name="str"></param> /// <returns></returns> public static string DelLink(string str) { if (str != null && str.Trim() != "") return Regex.Replace(str, "(<a[^>]+>)|(</a 阅读全文
posted @ 2011-03-31 21:50 放哨De老鼠 阅读(208) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 截取字符串并去掉图片 /// </summary> /// <param name="content">要处理的字符串</param> /// <param name="length">截取长度</param> /// <param name="tail">尾部特定字符</param> /// <returns></returns> public static string Cut 阅读全文
posted @ 2011-03-31 21:49 放哨De老鼠 阅读(479) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 该方法检测并替换用户输入的恶意字符 /// </summary> /// <param name="text">用户输入的文字 </param> /// <returns>返回验证后的文字 </returns> public static string InputText(string text) { text = text.ToLower().Trim(); if (string.IsNullOrEmpty(text)) { return string.Empty; 阅读全文
posted @ 2011-03-31 21:48 放哨De老鼠 阅读(265) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 该方法用于生成指定位数的随机字符串 /// </summary> /// <param name="VcodeNum">参数是随机数的位数</param> /// <returns>返回一个随机数字符串</returns> public static string RndNumStr(int VcodeNum) { string[] source = { "0", "1", "1", "3" 阅读全文
posted @ 2011-03-31 21:47 放哨De老鼠 阅读(459) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 下一页