程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> ASP 信息提示函數並作返回或者轉向

ASP 信息提示函數並作返回或者轉向

編輯:關於ASP編程

有時候我們在寫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

具體的使用方法就不說了,很簡單

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved