预览模式: 普通 | 列表
09-04
12

兰花

     奋斗了这么久,得到了什么,努力为了什么

查看更多...

Tags: 兰花

分类:生活 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 314
09-04
11

dedecmsV53文章分页标题加上序号

  //循环生成HTML文件
  else
  {
   for($i=1;$i<=$this->TotalPage;$i++)
   {
    if($i>1)
    {
     $truefilename = $this->GetTruePath().$fileFirst."_".$i.".".$this->ShortName;
     //为分页标题加上序号。2009.2.13

查看更多...

Tags: PHP dede CMS

分类:Asp&Php | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 408
09-04
11

ASP程序自增

set rs = server.createobject("adodb.recordset")
'这里ProdId 是数据库里,你要做自增的字段
sql = "select * from bproduc where ProdId is not null"
rs.cursorlocation = 3
rs.open sql,conn,1,1
if rs.bof and rs.eof then'数据库没有数据,则设为1,暂时存到autoid
autoid=1
else
totalid=rs.RecordCount'有数据,根据数据库记录总数增1存到autoid

查看更多...

Tags: 自增

分类:Asp&Php | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 331
09-04
09

用ASP过滤HTML代码

'删除字符串中的HTML代码
function nohtml(str)
dim re
Set re=new RegExp
re.IgnoreCase =true
re.Global=True
re.Pattern="(\<.[^\<]*\>)"
str=re.replace(str," ")
re.Pattern="(\<\/[^\<]*\>)"

查看更多...

Tags: HTML

分类:Asp&Php | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 425
<script>
try{
alert("经 encodeURI()得到的值是:"+encodeURI('wd=经')+"\n而非wd=%BE%AD")
}catch(e){
alert("错了吧!");
}
try{
alert(decodeURI("%BE%AD"))
}catch(e){

查看更多...

Tags: encodeURI url 汉字

分类:Ajax/Js | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 667
09-04
06

Java判断中文的方法

1、
  int count = 0;
  String regEx = "[\\u4e00-\\u9fa5]";
  // System.out.println(regEx);
  String str = "字符串";
  // System.out.println(str);
  Pattern p = Pattern.compile(regEx);
  Matcher m = p.matcher(str);
  System.out.print("提取出来的中文有:");

查看更多...

Tags: 中文

分类:学习 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 455