Python语言技术文档

微信小程序技术文档

php语言技术文档

jsp语言技术文档

asp语言技术文档

C#/.NET语言技术文档

html5/css技术文档

javascript

点击排行

您现在的位置:首页 > 技术文档 > asp函数/类库

asp.net常用函数收藏第1_2页

来源:中文源码网    浏览:295 次    日期:2024-05-02 22:27:49
【下载文档:  asp.net常用函数收藏第1_2页.txt 】


asp.net常用函数收藏第1/2页
/// /// 得到站点用户IP /// /// public static string getUserIP() { return HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"].ToString(); } /// /// 去除字符串最后一个','号 /// /// :要做处理的字符串 /// 返回已处理的字符串 public static string Lost(string chr) { if (chr == null || chr == string.Empty) { return ""; } else { chr = chr.Remove(chr.LastIndexOf(",")); return chr; } } /// /// 去除字符串第一个'/'号 /// /// 要做处理的字符串 /// 返回已处理的字符串 public static string lostfirst(string chr) { string flg = ""; if (chr != string.Empty || chr != null) { if (chr.Substring(0, 1) == "/") flg = chr.Replace(chr.Substring(0, 1), ""); else flg = chr; } return flg; } /// /// 替换html中的特殊字符 /// /// 需要进行替换的文本。 /// 替换完的文本。 public static string HtmlEncode(string theString) { theString = theString.Replace(">", ">"); theString = theString.Replace("<", "<"); theString = theString.Replace(" ", " "); theString = theString.Replace(" ", " "); theString = theString.Replace("\"", """); theString = theString.Replace("\'", "'"); theString = theString.Replace("\n", "
"); return theString; } /// /// 恢复html中的特殊字符 /// /// 需要恢复的文本。 /// 恢复好的文本。 public static string HtmlDiscode(string theString) { theString = theString.Replace(">", ">"); theString = theString.Replace("<", "<"); theString = theString.Replace(" ", " "); theString = theString.Replace(" ", " "); theString = theString.Replace(""", "\""); theString = theString.Replace("'", "\'"); theString = theString.Replace("
", "\n"); return theString; } /// /// 生成随机数字 /// /// 生成长度 /// public static string Number(int Length) { return Number(Length, false); } /// /// 生成随机数字 /// /// 生成长度 /// 是否要在生成前将当前线程阻止以避免重复 /// public static string Number(int Length, bool Sleep) { if (Sleep) System.Threading.Thread.Sleep(3); string result = ""; System.Random random = new Random(); for (int i = 0; i < Length; i++) { result += random.Next(10).ToString(); } return result; }
12下一页阅读全文

相关内容