ASP判断字段是否为空的问题

直接使用<%=rs("content")%>就可以调出rs("content")内的值判断rs("content")是否为空如果为空显示别的内容如果不为空则显示rs("c... 直接使用 <%=rs("content")%>就可以调出 rs("content") 内的值 判断rs("content")是否为空 如果为空 显示别的内容 如果不为空则显示 rs("content") 但是使用下面方法却调出rs("content")内的值 请问应该怎么写。
<%
if rs("content")="" then
response.write("<td bgcolor=blue>"&rs("title")&"</td>")
else
response.write("<td bgcolor=red>"&rs("content")&"</td>")
end if
%>
如果不为空显示不出来rs("content")内的值
展开
 我来答
Nomoka
2008-12-18 · 超过13用户采纳过TA的回答
知道答主
回答量:36
采纳率:0%
帮助的人:28.3万
展开全部
<%
if rs("content")<>"" then
response.write("<td bgcolor=red")"&rs("content")&"</td>")
else
response.write("<td bgcolor=blue")"&rs("title")&"</td>")
end if
%>
roobie
2008-12-18 · TA获得超过1387个赞
知道小有建树答主
回答量:947
采纳率:0%
帮助的人:821万
展开全部
ASP如何判断ACCESS表中的值不为空值

if not Isnull(rs("字段名称")) Then
Response.write(rs("字段名称"))
end if

------------------------

用Isnull()函数

Isnull(content)

返回true 就是空值
返回false 就是非空值
----------------------------
例如:
select * from 表名 where Isnull(字段名)

========================================
ACCESS某字段为空时,asp怎样解决显示空值

下面两种代码试一下:

<%for i=0 to rs1.fields.count-1
if isnull(rs1(i)) then
response.write ("<td><font size=2><b>"+"无"+"</b></font></td>")
else
response.write ("<td><font size=2><b>"+rs1(i)+"</b></font></td>")
end if
next%>

<%for i=0 to rs1.fields.count-1
if rs1(i)="" then
response.write ("<td><font size=2><b>"+"无"+"</b></font></td>")
else
response.write ("<td><font size=2><b>"+rs1(i)+"</b></font></td>")
end if
next%>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
bdstudy
2008-12-18 · TA获得超过1781个赞
知道小有建树答主
回答量:460
采纳率:50%
帮助的人:367万
展开全部
语句上没错,看是不是表格元素的问题。因为你目前只用了<td>
跟其他<table>和<tr>等元素是否正确配对。

可以先试response.write(rs("content"))
看是否可以正常读取rs("content") 的值
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
迷网
2008-12-20 · TA获得超过255个赞
知道答主
回答量:152
采纳率:0%
帮助的人:0
展开全部
很简单rs("content") 改成 Trim(rs("content")) 就可以了。

参考资料: http://blog.ajaxhtm.com/article/303.htm

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式