怎么用asp描述,站内信功能怎么表示未读和已读状态,这样写对吗
发布网友
发布时间:2022-06-17 01:25
我来回答
共2个回答
热心网友
时间:2023-11-11 00:56
如果数据库中wei列表中1表示未读,0表示已读(且为数字)
而且就这两种状态
<%if rs("wei")=1 then:response.write("未读"):else:response.write("已读"):end if%>
若未读为字符串将if rs("wei")=1 then改为if rs("wei")='1' then即可
热心网友
时间:2023-11-11 00:56
response.write "未读"
response.write "已读"
用response.write "" 输出到屏幕 "" 这间表示显示的名称追问但是怎么判断未读和已读呢
追答if rs("wei")=1 then
这个不就是判断吗?
rs("wei")这个不就是读与不读的标识吗?
当=1时,未读,=0时,读了。