- 41
- 0
- 约1.21万字
- 约 9页
- 2017-06-10 发布于北京
- 举报
using System;
using System.Collections.Generic;
using System.Text;
using System.Web;
using System.Web.UI;
public class JScript
{
#region 旧版本
/// summary
/// 弹出JavaScript小窗口
/// /summary
/// param name=js窗口信息/param
public static void Alert(string message)
{
#region
string js = @Script language=JavaScript
alert( + message + );/Script;
HttpContext.Current.Response.Write(js);
#endregion
}
/// summary
/// 弹出消息框并且转向到新的URL
/// /summary
/// param name=message消息内容/param
/// param name=toURL连接地址/param
public static void AlertAndRedirect(string message, string toURL)
{
#region
string js = script language=javascriptalert({0});window.location.replace({1})/script;
HttpContext.Current.Response.Write(string.Format(js, message, toURL));
#endregion
}
/// summary
/// 回到历史页面
/// /summary
/// param name=value-1/1/param
public static void GoHistory(int value)
{
#region
string js = @Script language=JavaScript
history.go({0});
/Script;
HttpContext.Current.Response.Write(string.Format(js, value));
#endregion
}
/// summary
/// 关闭当前窗口
/// /summary
public static void CloseWindow()
{
#region
string js = @Script language=JavaScript
parent.opener=null;window.close();
/Script;
HttpContext.Current.Response.Write(js);
HttpContext.Current.Response.End();
#endregion
}
/// summary
/// 刷新父窗口
/// /summary
public static void RefreshParent(string url)
{
#region
string js = @Script language=JavaScript
window.opener.location.href= + url + ;window.close();/Script;
HttpContext.Current.Response.Write(js);
#endregion
}
/// summary
/// 刷新打开窗口
/// /summary
public static void Ref
您可能关注的文档
- AutoCAD建筑制图教程目录.doc
- AUTOCAD快捷技能集锦.docx
- AutoCAD快捷绘图命令.doc
- AUTOCAD快捷键命令大全.docx
- AutoCAD快捷键命令大集合.doc
- AutoCAD快捷键必背.doc
- AutoCAD快捷键操作方法.doc
- AutoCAD快捷键笔记[1].doc
- AutoCAD技巧看你知多少.doc
- AUTOCAD操作命令全集.doc
- 广东省广州省实验中学教育集团2025-2026学年八年级上学期期中考试物理试题(解析版).docx
- 广东省广州大学附属中学2025-2026学年八年级上学期奥班期中物理试题(解析版).docx
- 广东省广州市第八十六中学2025-2026学年八年级上学期期中物理试题(含答案).docx
- 广东省广州市第八十九中学2025-2026学年八年级上学期期中考试物理试题(解析版).docx
- 广东省广州市第二中学2025-2026学年八年级上学期期中考试物理试题(含答案).docx
- 广东省广州市第八十六中学2025-2026学年八年级上学期期中物理试题(解析版).docx
- 广东省广州市第八十九中学2025-2026学年八年级上学期期中考试物理试题(含答案).docx
- 广东省广州市第二中学2025-2026学年八年级上学期期中考试物理试题(解析版).docx
- 2026《中国人寿上海分公司营销员培训体系优化研究》18000字.docx
- 《生物探究性实验教学》中小学教师资格模拟试题.docx
原创力文档

文档评论(0)