问个笨笨问题!
& "<input " & mhaveprint & " name=""print1"" type=""submit"" class=""btn"" value=""正式打印确认"" onClick=""return ccheck()"">" & vbcrlf _
& " <input " & mhaveprint & " type=""submit"" value="" 提 交 "" name=""submit"" onclick=""return check()"">" & vbcrlf _
& "<input name=""print"" type=""button"" class=""btn"" value="" 打 印 "" onClick=""print2();"" > " & vbcrlf _
下面是ccheck()的函数
function ccheck() {
a = confirm("协议一经确认后,认购协议将转为正式协议,认购协议内容将无法修改,是否继续?");
if(a)
return true;
else
return false;
}
我现在想在点了“正式打印确认”后
执行consign.open "update table1 set haveprint=1 where caseid=" & mcaseid,connectstring
但不知道该写在什么地方,请教一下思路???