主题:  一个小函数请大家帮忙

孤月寒星

职务:普通成员
等级:1
金币:1.0
发贴:189
#12002/2/18 3:58:59
我想用个函数
目的如下:
1.接收id=request.querystring("id")的值,
2.需要弹出对话框
3.再判断rs("re_yn")的值
如果是1则跳转到response.redirect "repdel.asp?id="&id页
如果不是1则跳转到response.redirect "del.asp?id="&id页
说明:
1.要用vbscript编写
2.rs是个记录集(adodb.recordset)
3.id和re_yn是表中的字段

我是这么写的错误程序,我知道没有用起个引头作用.
<%
function showdel(id)
if msgbox("你确定要删除这条记录吗?",vbokcancel) then
if rs_g("re_yn") =1 then
response.redirect "repdel.asp?id=" + id
    else
     response.redirect "del.asp?id=" + id
    end if
end if
end function
%>

谢谢 我很急 希望大家帮忙.

编辑历史:[这消息被wincheer编辑过(编辑时间2002-02-18 15:33:04)]
[这消息被wincheer编辑过(编辑时间2002-02-18 15:33:04)]


5D公害

职务:普通成员
等级:9
金币:10.3
发贴:36272
#22002/2/18 18:26:17
老兄,我还以为你是我们月夜工作室的人呢,不过我们的孤月寒星还在玩FLASH



绿茶

职务:普通成员
等级:8
金币:10.0
发贴:19267
#32002/2/21 9:15:22
<%
function showdel(id)
if (msgbox("你确定要删除这条记录吗?",vbokcancel) =1) then
if rs_g("re_yn") =1 then
response.redirect "repdel.asp?id=" + id
else
response.redirect "del.asp?id=" + id
end if
end if
end function
%>