• 微信

response.write response

时间:14:57:23作者:admin分类:娱乐浏览:2评论:0

  esponse.Write() 这里可以是变量,可以是从直接在数据库中读取出来的数据

  比如:

  a="aaaaa"

  response.write(a) 这个a是个变量也可以是常量,显示结果为aaaaa

  或者

  a=rs("aaa")

  response.write(a) 这个a是读取数据库里的字段,结果为数据库aaa字段里的内容

  而response.Write("") 这里显示的就是字符串.

  比如:response.write ("a") 那么显示出来的结果就是a

  ?

猜你喜欢