ASP 信息提示函数并作返回或者转向

时间:2021-05-28

有时候我们在写asp的时候需要给用户一些反馈信息,这个自定义的返回信息函数,很方便大家使用

'************************'子程序名:信息提示窗口'功能:信息提示,并作返回或者转向'参数:'str 提示字符串'stype 处理类型:Back 返回 GoUrl 转向 Close 关闭'url 转向方向'************************Sub MsgBox(str,stype,url) response.write "<script language=javascript>" response.write "alert('"&str&"');" select case stype case "Back" response.write "history.go(-1);" case "GoUrl" response.write "window.location='"&url&"'" case "Close" response.write "window.close()" end select response.write "</script>"End Sub

具体的使用方法就不说了,很简单

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章