asp判断数据是否已经添加上,另外提示不能为空

asp判断数据是否已经添加上,另外提示不能为空,第1张

1.判断是否为空

<script Language="JavaScript">

function chk() {

if (document.myform.notice.value=='') {

window.alert ("请输入用户名!")

myform.notice.focus()

return false

}return true

}

</script>

2.插入数据成功

response.write = "<script language=javascript>alert('插入数据成功!')</script>"

可能有地方要稍微调整下

比如数据窗口为dw_1,姓名字段为name,学号为id.首选要确定的是多行数据还是一行数据.

①1行数据:

string ls_temp

dw_1.accepttext()//将用户编辑数据窗口的值存入缓存区

ls_temp = dw_1.object.name[1]

if isnull(ls_temp) or ls_temp ='' then

messagebox('提示','姓名不能为空!')

return

end if

ls_temp = dw_1.object.id[1]

if isnull(ls_temp) or ls_temp ='' then

messagebox('提示','学号不能为空!')

return

end if

② 多行:

string ls_temp

long i

dw_1.accepttext()//将用户编辑数据窗口的值存入缓存区

for i=1 to dw_1.rowcount()

ls_temp = dw_1.object.name[i]

if isnull(ls_temp) or ls_temp ='' then

messagebox('提示','第'+string(i)+'行姓名不能为空!')

return

end if

ls_temp = dw_1.object.id[i]

if isnull(ls_temp) or ls_temp ='' then

messagebox('提示','第'+stirng(i)+'行学号不能为空!')

return

end if

next


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11965166.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-20
下一篇 2023-05-20

发表评论

登录后才能评论

评论列表(0条)

保存