日期:2010-05-26 浏览次数:20589 次
System.DateTime currentTime=new System.DateTime();
currentTime=System.DateTime.Now;
int 年=currentTime.Year;
int 月=currentTime.Month;
int 日=currentTime.Day;
int 时=currentTime.Hour;
int 分=currentTime.Minute;
int 秒=currentTime.Second;
int 毫秒=currentTime.Millisecond;
(变量可用中文)
string strY=currentTime.ToString("f"); //不显示秒
string strYM=currentTime.ToString("y");
string strMD=currentTime.ToString("m");
string strYMD=currentTime.ToString("d");
string strT=currentTime.ToString("t");
int Len = str.Length ; //Len是自定义变量, str是求测的字串的变量名
System.Text.StringBuilder sb = new System.Text.StringBuilder("");
sb.Append("中华");
sb.Append("人民");
sb.Append("共和国");
String user_IP=Request.ServerVariables["REMOTE_ADDR"].ToString();
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();
}
Session["变量"];
Session["username"]="小布什";
Object objName=Session["username"];
String strName=objName.ToString();
Session.RemoveAll();
String str=Request.QueryString["变量"];
Response.Write("字串");
Response.Write(变量);
Response.Redirect("URL地址");
char.IsWhiteSpce(字串变量,位数)——逻辑型;
string str="中国 人民";
Response.Write(char.IsWhiteSpace(str,2)); //结果为:True, 第一个字符是0位,2是第三个字符。
char.IsPunctuation('字符') --逻辑型
Response.Write(char.IsPunctuation('A')); //返回:False