惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
Cloudbric
Cloudbric
P
Palo Alto Networks Blog
T
Threatpost
T
Tor Project blog
T
Tenable Blog
AWS News Blog
AWS News Blog
Project Zero
Project Zero
L
LangChain Blog
Cyberwarzone
Cyberwarzone
Engineering at Meta
Engineering at Meta
雷峰网
雷峰网
C
CERT Recently Published Vulnerability Notes
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Security Latest
Security Latest
云风的 BLOG
云风的 BLOG
I
Intezer
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
P
Proofpoint News Feed
A
Arctic Wolf
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Google DeepMind News
Google DeepMind News
V
Vulnerabilities – Threatpost
C
Cybersecurity and Infrastructure Security Agency CISA
MongoDB | Blog
MongoDB | Blog
aimingoo的专栏
aimingoo的专栏
K
Kaspersky official blog
Jina AI
Jina AI
N
News | PayPal Newsroom
T
The Blog of Author Tim Ferriss
D
DataBreaches.Net
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
Recorded Future
Recorded Future
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Secure Thoughts
TaoSecurity Blog
TaoSecurity Blog
P
Privacy & Cybersecurity Law Blog
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
IT之家
IT之家
Forbes - Security
Forbes - Security
The Hacker News
The Hacker News
Last Week in AI
Last Week in AI
T
Threat Research - Cisco Blogs
Y
Y Combinator Blog

博客园 - Lee Vane

无法通过“控制面板”卸载 Office 2003、Office 2007 或 Office 2010 套件的情况下,如何才能将其卸载? 量子恒道统计-淘宝添加步骤 朋友写的,我觉得比较好,批量生产HTML中使用的 使用CSS设计了一个导航栏(仿康盛创想) 文章内容分页 可点击的下拉菜单 ASP多行多列显示代码- 5行 Formfieldhints.--表单提示效果 项目分享---google calendar.(日历,java版). asp根据出生时间判断生肖 用 JavaScript 实现网页图片等比例缩放 ASP数据库操作类 新闻标题太长加省略号和对内容太长分页 检查组件是否已经安装,用Jmail组件发送邮件 格式化日期 全选并改变TR颜色 选择文字就能选择复选框 简洁的TAB 阿里妈妈的商城分类效果一
ASP函数,实现多个功能的弹出对话框
Lee Vane · 2008-09-26 · via 博客园 - Lee Vane

'================================================
 '函数名:Alert
 '作 用:弹出对话框
 '参 数:Alert----弹出对话框
 ' str ----文本
 ' 用法:Alert"添加成功!"
 '返回值:真
 '================================================
Function Alert(str)
 Response.Write("<script language=javascript>alert('"&str&"')</script>")
End Function
'================================================
 '函数名:AlertAndBack
 '作 用:弹出对话框,并返回前一页
 '参 数:AlertAndBack----弹出对话框
 ' str ----文本
 ' 用法:AlertAndBack"添加成功!"
 '返回值:真
 '================================================
function AlertAndBack(str)
 Response.Write("<script language=javascript>alert('"&str&"');history.back(-1)</script>")
end function
'================================================
 '函数名:AlertAndTo
 '作 用:弹出对话框,并以 _blank,_self,.....来打开一个网页
 '参 数:AlertAndTo----弹出对话框
 ' str ----文本;href ----网页;target ----打开方式
 ' 用法:AlertAndTo"添加成功!","index.asp,_blank"
 '返回值:真
 '================================================
function AlertAndTo(str,href,target)
 Response.Write("<script language=javascript>alert('"&str&"');window.open('"&href&"','"&target&"')</script>")
end function
'================================================
 '函数名:AlterRedirect
 '作 用:弹出对话框,并转到一个网页
 '参 数:AlterRedirect----弹出对话框
 ' msg ----文本,redirectURL  ---网页
 ' 用法:AlterRedirect"添加成功!","index.asp"
 '返回值:真
 '================================================
Function AlterRedirect(msg,redirectURL)
 Response.Write "<script>alert('"&msg&"');window.location='"&redirectURL&"';</script>"
End Function
'================================================
 '函数名:RedirectURL
 '作 用:转到一个网页
 '参 数:RedirectURL----弹出对话框
 ' strURL ----文本
 ' 用法:RedirectURL"index.asp"
 '返回值:真
 '================================================
Function RedirectURL(strURL)
 Response.Write "<script>window.location='"&strURL&"';</script>"
End Function
'================================================
 '函数名:AlterClose
 '作 用:弹出对话框,确定后关闭页面
 '参 数:AlterClose----弹出对话框
 ' msg ----文本
 ' 用法:AlterClose"添加成功!"
 '返回值:真
 '================================================
Function AlterClose(msg)
 Response.Write "<script>alert('"&msg&"');window.close();</script>"
End Function

'================================================
 '函数名:AlterBack
 '作 用:弹出对话框,并返回前一页
 '参 数:AlterBack----弹出对话框
 ' msg ----文本
 ' 用法:AlterBack"添加成功!"
 '返回值:真
 '================================================
Function AlterBack(msg)
 Response.Write "<script>alert('"&msg&"');history.back();</script>"
End Function