欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

ASP 信息提示函數(shù)并作返回或者轉(zhuǎn)向

 更新時(shí)間:2016年12月06日 19:00:11   投稿:mdxy-dxy  
這篇文章主要介紹了ASP 信息提示函數(shù)并作返回或者轉(zhuǎn)向,需要的朋友可以參考下

有時(shí)候我們?cè)趯慳sp的時(shí)候需要給用戶一些反饋信息,這個(gè)自定義的返回信息函數(shù),很方便大家使用

'************************
'子程序名:信息提示窗口
'功能:信息提示,并作返回或者轉(zhuǎn)向
'參數(shù):
'str 提示字符串
'stype 處理類型:Back 返回 GoUrl 轉(zhuǎn)向 Close 關(guān)閉
'url 轉(zhuǎn)向方向
'************************
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

具體的使用方法就不說了,很簡(jiǎn)單

相關(guān)文章

最新評(píng)論