最大的网站源码资源下载站,
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()
以下为引用的内容: 字符型转换 转为字符串 |
4、变量.length 数字型
以下为引用的内容: 取字串长度: |
5、system.text.encoding.default.getbytes(变量)
以下为引用的内容: 字码转换 转为比特码 |
6、system.text.stringbuilder("")
以下为引用的内容: 字符串相加,(+号是不是也一样?) 如:system.text.stringbuilder sb = new system.text.stringbuilder(""); sb.append("中华"); sb.append("人民"); sb.append("共和国"); |
7、变量.substring(参数1,参数2);
以下为引用的内容: 截取字串的一部分,参数1为左起始位数,参数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 objname=session["username"]; string strname=objname.tostring(); 清空: session.removeall(); |
11、string str=request.querystring["变量"];
以下为引用的内容: 用超链接传送变量。 |
12、doc对象.createelement("新建节点名");
以下为引用的内容: 创建xml文档新节点 |
13、父节点.appendchild(子节点);
以下为引用的内容: 将新建的子节点加到xml文档父节点下 |
以下为引用的内容: 删除节点 |
以下为引用的内容: response.write("字串"); |
以下为引用的内容: 查指定位置是否空字符; |
以下为引用的内容: 查字符是否是标点符号 |
以下为引用的内容: 把字符转为数字,查代码点,注意是单引号。 |
以下为引用的内容: 把数字转为字符,查代码代表的字符。 如: response.write((char)22269); //返回“国”字。 |
20、 trim()
以下为引用的内容: 清除字串前后空格 |
以下为引用的内容: 字串替换 |
以下为引用的内容: 取i与j中的最大值 |
以下为引用的内容: (1)、 |
以下为引用的内容: 查找字串中指定字符或字串首次(最后一次)出现的位置,返回索引值,如: |
以下为引用的内容: 在字串中指定索引位插入指定字符。如: |
以下为引用的内容: 在字串左(或右)加空格或指定char字符,使字串达到指定长度,如: |
以下为引用的内容: 从指定位置开始删除指定数的字符 |
新闻热点
疑难解答
图片精选