欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

asp.net常用函數(shù)收藏第1/2頁(yè)

 更新時(shí)間:2020年06月16日 22:27:47   投稿:mdxy-dxy  
這篇文章給大家介紹asp.net常用函數(shù)收藏,主要包括 得到站點(diǎn)用戶IP,去除字符串最后一個(gè)','號(hào)、去除字符串第一個(gè)'/'號(hào)等,感興趣的朋友跟隨小編一起看看吧

具體代碼如下所示:

/// <summary> 
/// 得到站點(diǎn)用戶IP 
/// </summary> 
/// <returns></returns> 
public static string getUserIP() 
{ 
return HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"].ToString(); 
} 

/// <summary> 
/// 去除字符串最后一個(gè)','號(hào) 
/// </summary> 
/// <param name="chr">:要做處理的字符串</param> 
/// <returns>返回已處理的字符串</returns> 
public static string Lost(string chr) 
{ 
if (chr == null || chr == string.Empty) 
{ 
return ""; 
} 
else 
{ 
chr = chr.Remove(chr.LastIndexOf(",")); 
return chr; 
} 
} 

/// <summary> 
/// 去除字符串第一個(gè)'/'號(hào) 
/// </summary> 
/// <param name="chr">要做處理的字符串</param> 
/// <returns>返回已處理的字符串</returns> 
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; 
} 

/// <summary> 
/// 替換html中的特殊字符 
/// </summary> 
/// <param name="theString">需要進(jìn)行替換的文本。</param> 
/// <returns>替換完的文本。</returns> 
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", "<br/> "); 
return theString; 
} 

/// <summary> 
/// 恢復(fù)html中的特殊字符 
/// </summary> 
/// <param name="theString">需要恢復(fù)的文本。</param> 
/// <returns>恢復(fù)好的文本。</returns> 
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("<br/> ", "\n"); 
return theString; 
} 

/// <summary> 
/// 生成隨機(jī)數(shù)字 
/// </summary> 
/// <param name="length">生成長(zhǎng)度</param> 
/// <returns></returns> 
public static string Number(int Length) 
{ 
return Number(Length, false); 
} 

/// <summary> 
/// 生成隨機(jī)數(shù)字 
/// </summary> 
/// <param name="Length">生成長(zhǎng)度</param> 
/// <param name="Sleep">是否要在生成前將當(dāng)前線程阻止以避免重復(fù)</param> 
/// <returns></returns> 
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; 
} 

                            
                            

                        

相關(guān)文章

最新評(píng)論