军用金属探测器:access文本字段的默认值是什么

来源:百度文库 编辑:查人人中国名人网 时间:2024/05/06 16:55:33
access中文本类型字段的默认值是什么?我在Access的设计表中z文本类型的字段"m"没有设置任何默认值,在ASp文件中:
if rs("m")="" then
response.write("*****")
end if
该段代码就是不执行,何解?请高手指点!

最好
if len(rst(\"m\"))=0 then
response.write(\"*****\")
end if
这样不管是 null 还是字符串\"\" 都可以判断

if rs("m")=null then
response.write("*****")
end if

这样试一试

是null吧/
不过
if rs("m")="" then
response.write("*****")
end if 是没有错误的

NULL