你要显示的文字的颜色只能在html里设置的.response.write没有显示颜色的功能
比如你要显示的文字最终是显示在某个textbox控件里,则在这个控件的style属性里加上color:red
这样就可以让颜色显示成红色.
response.Write("你是个热情的人哦")把内容设为红色
在head区域加上css样式
.red{color:red}
response.Write "你是个热情的人哦"
双引号!!!
ASP语句输出双引号时要把一个改为两个,这样才能实际输出一个。
response.write " this count2 is null,please reinput"