改写提示函数
原asp的代码如下:
----------
sub web_js_msg(msg_type,msg_var,msg_url)
call cookies_load()
if msg_type=0 then
response.write "alert("""&msg_var&""");location.href="""&msg_url&""";"
exit sub
end if
response.write joekoe_cms.js_type("alert("""&msg_var&""");location.href="""&msg_url&""";",3)
end sub
-----------
要将其改为在asp.net(vb)中使用,该如何改写,请大家指点一二