<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
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)