It mainly includes obtaining the site user IP, removing the last ',' sign in the string, removing the first '/' sign in the string, etc./// <summary>
/// Get site user IP
/// </summary>
/// <returns></returns>
public static string getUserIP()
{
return HttpContext.Current.Request.ServerVariables[REMOTE_ADDR].ToString();
}
/// <summary>
/// Remove the last ',' sign from the string
/// </summary>
/// <param name=chr>: The string to be processed</param>
/// <returns>Return the processed string</returns>
public static string Lost(string chr)
{
if (chr == null || chr == string.Empty)
{
return ;
}
else
{
chr = chr.Remove(chr.LastIndexOf(,));
return chr;
}
}
/// <summary>
/// Remove the first '/' sign from the string
/// </summary>
/// <param name=chr>String to be processed</param>
/// <returns>Returns the processed string</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>
/// Replace special characters in html
/// </summary>
/// <param name=theString>The text that needs to be replaced. </param>
/// <returns>Replaced text. </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>
/// Restore special characters in html
/// </summary>
/// <param name=theString>The text that needs to be restored. </param>
/// <returns>The restored text. </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>
/// Generate random numbers
/// </summary>
/// <param name=length>Generate length</param>
/// <returns></returns>
public static string Number(int Length)
{
return Number(Length, false);
}
/// <summary>
/// Generate random numbers
/// </summary>
/// <param name=Length>Generate length</param>
/// <param name=Sleep>Whether to block the current thread before generating to avoid duplication</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;
}
It mainly includes getting the site user IP, removing the last ',' sign in the string, removing the first '/' sign in the string, etc.
//Pop up dialog box
public static void salert(string str)
{
HttpContext.Current.Response.Write(<script>alert(' + str + ');</script>);
}
/// <summary>
/// Display the message prompt box and return to the previous page
/// </summary>
/// <param name=page>Current page pointer, usually this</param>
/// <param name=strMsg>Prompt message</param>
public static void ShowGoHistory(System.Web.UI.Page page, string strMsg)
{
page.ClientScript.RegisterStartupScript(page.GetType(), message, <script language='javascript' defer>alert(' + strMsg.ToString() + ');window.history.go(-1);</script> );
}
/// <summary>
/// Display the message prompt dialog box and jump to the page
/// </summary>
/// <param name=page>Current page pointer, usually this</param>
/// <param name=strMsg>Prompt message</param>
/// <param name=url> Jump target URL</param>
public static void ShowRedirect(System.Web.UI.Page page, string strMsg, string url)
{
StringBuilder Builder = new StringBuilder();
Builder.Append(<script language='javascript' defer>);
Builder.AppendFormat(alert('{0}');, strMsg);
Builder.AppendFormat(top.location.href='{0}', url);
Builder.Append(</script>);
page.ClientScript.RegisterStartupScript(page.GetType(), message, Builder.ToString());
}
//To insert single quotes
public static string delSingle(string str)
{
return str.Replace(', '');
}
//Export to Excel by gridviw
public static void ToExcel(System.Web.UI.Control ctl)
{
HttpContext.Current.Response.AppendHeader(Content-Disposition, attachment;filename=Excel.xls);
HttpContext.Current.Response.Charset = UTF-8;
HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.Default;
HttpContext.Current.Response.ContentType = application/ms-excel;//image/JPEG;text/HTML;image/GIF;vnd.ms-excel/msword
ctl.Page.EnableViewState = false;
System.IO.StringWriter tw = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter(tw);
ctl.RenderControl(hw);
HttpContext.Current.Response.Write(tw.ToString());
HttpContext.Current.Response.End();
}
///using System.Security.Cryptography;
///using System.Text;
/// <summary>
/// MD5 function
/// </summary>
/// <param name=str>Original string</param>
/// <returns>MD5 result</returns>
public static string MD5(string str)
{
byte[] b = Encoding.Default.GetBytes(str);
b = new MD5CryptoServiceProvider().ComputeHash(b);
string ret = ;
for (int i = 0; i < b.Length; i++)
ret += b[i].ToString(x).PadLeft(2, '0');
return ret;
}
///using System.Net;
///using System.IO;
/// <summary>
/// Get the source file content based on Url
/// </summary>
/// <param name=url>Legal Url address</param>
/// <returns></returns>
public static string GetSourceTextByUrl(string url)
{
WebRequest request = WebRequest.Create(url);
request.Timeout = 20000;//20 seconds timeout
WebResponse response = request.GetResponse();
Stream resStream = response.GetResponseStream();
StreamReader sr = new StreamReader(resStream);
return sr.ReadToEnd();
}