asp仿php的一些函数分享
代码如下:‘过程:输出字符串[代替Response.Write] Sub echo(Str) response.Write(Str) End Sub ‘函数:获取表单[代替Request.Form] Function reqf(Str) reqf = Request.Form(Str) End Function ‘过程:结束页面并输出字符串 Sub die(Str) response.Write(Str) response.End() End Sub ‘函数:将ASP文件运行结果返回为字串 Function ob_get_contents(Path) Dim tmp, a, b, t, mat
用户评论