ASP.NET網路程式設計中經常用到的27個函式集

iDotNetSpace發表於2009-10-14

1、DateTime 數字型


以下是引用片段:


System.DateTime currentTime=new System.DateTime();

1.1 取當前年月日時分秒 currentTime=System.DateTime.Now;

1.2 取當前年 int 年=currentTime.Year;

1.3 取當前月 int 月=currentTime.Month;

1.4 取當前日 int 日=currentTime.Day;

1.5 取當前時 int 時=currentTime.Hour;

1.6 取當前分 int 分=currentTime.Minute;

1.7 取當前秒 int 秒=currentTime.Second;

1.8 取當前毫秒 int 毫秒=currentTime.Millisecond;

(變數可用中文)


2、Int32.Parse(變數) Int32.Parse("常量")


以下是引用片段:

字元型轉換 轉為32位數字型


3、 變數.ToString()


以下是引用片段:

字元型轉換 轉為字串

12345.ToString("n"); //生成 12,345.00

12345.ToString("C"); //生成 ¥12,345.00

12345.ToString("e"); //生成 1.234500e+004

12345.ToString("f4"); //生成 12345.0000

12345.ToString("x"); //生成 3039 (16進位制)

12345.ToString("p"); //生成 1,234,500.00%


4、變數.Length 數字型


以下是引用片段:

取字串長度:

如: string str="中國";

int Len = str.Length ; //Len是自定義變數, str是求測的字串的變數名


5、System.Text.Encoding.Default.GetBytes(變數)


以下是引用片段:

字碼轉換 轉為位元碼

如:byte[] bytStr = System.Text.Encoding.Default.GetBytes(str);

然後可得到位元長度:

len = bytStr.Length;


6、System.Text.StringBuilder("")


以下是引用片段:

字串相加,(+號是不是也一樣?)

如:System.Text.StringBuilder sb = new System.Text.StringBuilder("");

sb.Append("中華");

sb.Append("人民");

sb.Append("共和國");


7、變數.Substring(引數1,引數2);


以下是引用片段:

擷取字串的一部分,引數1為左起始位數,引數2為擷取幾位。

如:string s1 = str.Substring(0,2);


8、String user_IP=Request.ServerVariables["REMOTE_ADDR"].ToString();


以下是引用片段:

取遠端使用者IP地址


9、穿過代理伺服器取遠端使用者真實IP地址:


以下是引用片段:

if(Request.ServerVariables["HTTP_VIA"]!=null){

string user_IP=Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString();

}else{

string user_IP=Request.ServerVariables["REMOTE_ADDR"].ToString();

}


10、 Session["變數"];


以下是引用片段:

存取Session值;

如,賦值: Session["username"]="小布什";

取值: Object bjName=Session["username"];

String strName=objName.ToString();

清空: Session.RemoveAll();


11、String str=Request.QueryString["變數"];


以下是引用片段:

用超連結傳送變數。

如在任一頁中建超連結:點選

在Edit.aspx頁中取值:String str=Request.QueryString["fdid"];


12、DOC物件.CreateElement("新建節點名");


以下是引用片段:

建立XML文件新節點


13、父節點.AppendChild(子節點);


以下是引用片段:

將新建的子節點加到XML文件父節點下


14、 父節點.RemoveChild(節點);


以下是引用片段:

刪除節點



15、Response


以下是引用片段:

Response.Write("字串");

Response.Write(變數);

向頁面輸出。

Response.Redirect("URL地址");

跳轉到URL指定的頁面


16、char.IsWhiteSpce(字串變數,位數)——邏輯型


以下是引用片段:

查指定位置是否空字元;

如:

string str="中國 人民";

Response.Write(char.IsWhiteSpace(str,2)); //結果為:True, 第一個字元是0位,2是第三個字元。


17、char.IsPunctuation('字元') --邏輯型


以下是引用片段:

查字元是否是標點符號

如:Response.Write(char.IsPunctuation('A')); //返回:False


18、(int)'字元'


以下是引用片段:

把字元轉為數字,查程式碼點,注意是單引號。

如:

Response.Write((int)'中'); //結果為中字的程式碼:20013


19、(char)程式碼


以下是引用片段:

把數字轉為字元,查程式碼代表的字元。

如:

Response.Write((char)22269); //返回“國”字。


20、 Trim()


以下是引用片段:

清除字串前後空格


21 、字串變數.Replace("子字串","替換為")


以下是引用片段:

字串替換

如:



string str="中國";  
str=str.Replace("國","央"); //將國字換為央字  
Response.Write(str); //輸出結果為“中央”  
再如:(這個非常實用)  
string str="這是

相關文章