他的哪段好像PHP的代码!!!!

2007-07-09 12:07
2007-07-09 13:56
如何获取文件的名称和扩展名?
用字符串就可以轻松地获取每一个文件的名称和扩展名,但不要乱用:
<%
Function getFilename(text)
text = Left(text,inStrRev(fl,".")-1)
getFilename = text
End Function
Function getExtn(text)
text = Left(text,inStr(text,".")-1)
getExtn = text
End Function
%>

2007-07-09 14:14
2007-07-09 14:14
如何获取文件的名称和扩展名?
用字符串就可以轻松地获取每一个文件的名称和扩展名,但不要乱用:
<%
Function getFilename(text)
text = Left(text,inStrRev(fl,".")-1)
getFilename = text
End Function
Function getExtn(text)
text = Left(text,inStr(text,".")-1)
getExtn = text
End Function
%>
2007-07-10 11:00
2007-07-10 11:09
2007-07-10 14:18
先收下了!回去慢慢研究!~

2007-07-10 17:26