栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > asp

ASP.NET中常用的用来输出JS脚本的类

asp 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

ASP.NET中常用的用来输出JS脚本的类

整个程序的代码如下:
复制代码 代码如下:
using System;
using System.Collections.Generic;
using System.Text;
using System.Web;
using System.Web.UI;
///
/// 弹出Javascript小窗口
///

/// 窗口信息
public static void alert(string message, Page page)
{
#region
string js = @"";
//HttpContext.Current.Response.Write(js);
if (!page.Clientscript.IsStartupscriptRegistered(page.GetType(), "alert"))
{
page.Clientscript.RegisterStartupscript(page.GetType(), "alert", js);
}
#endregion
}

///
/// 弹出消息框并且转向到新的URL
///

/// 消息内容
/// 连接地址
public static void alertAndRedirect(string message, string toURL, Page page)
{
#region
string js = "";
//HttpContext.Current.Response.Write(string.Format(js, message, toURL));
if (!page.Clientscript.IsStartupscriptRegistered(page.GetType(), "alertAndRedirect"))
{
page.Clientscript.RegisterStartupscript(page.GetType(), "alertAndRedirect", string.Format(js, message, toURL));
}
#endregion
}

///
/// 回到历史页面
///

/// -1/1
public static void GoHistory(int value, Page page)
{
#region
string js = @"";
//HttpContext.Current.Response.Write(string.Format(js, value));
if (!page.Clientscript.IsStartupscriptRegistered(page.GetType(), "GoHistory"))
{
page.Clientscript.RegisterStartupscript(page.GetType(), "GoHistory", string.Format(js, value));
}
#endregion
}

///
/// 关闭当前窗口
///

public static void CloseWindow()
{
#region
string js = @"";
HttpContext.Current.Response.Write(js);
HttpContext.Current.Response.End();
#endregion
}

///
/// 刷新父窗口
///

public static void RefreshParent(string url, Page page)
{
#region
string js = @"";
//HttpContext.Current.Response.Write(js);
if (!page.Clientscript.IsStartupscriptRegistered(page.GetType(), "RefreshParent"))
{
page.Clientscript.RegisterStartupscript(page.GetType(), "RefreshParent", js);
}
#endregion
}


///
/// 刷新打开窗口
///

public static void RefreshOpener(Page page)
{
#region
string js = @"";
//HttpContext.Current.Response.Write(js);
if (!page.Clientscript.IsStartupscriptRegistered(page.GetType(), "RefreshOpener"))
{
page.Clientscript.RegisterStartupscript(page.GetType(), "RefreshOpener", js);
}
#endregion
}


///
/// 打开指定大小的新窗体
///

/// 地址
///
///
/// 头位置
/// 左位置
public static void OpenWebFormSize(string url, int width, int heigth, int top, int left, Page page)
{
#region
string js = @"";
//HttpContext.Current.Response.Write(js);
if (!page.Clientscript.IsStartupscriptRegistered(page.GetType(), "OpenWebFormSize"))
{
page.Clientscript.RegisterStartupscript(page.GetType(), "OpenWebFormSize", js);
}
#endregion
}


///
/// 转向Url制定的页面
///

/// 连接地址
public static void JavascriptLocationHref(string url, Page page)
{
#region
string js = @"";
js = string.Format(js, url);
//HttpContext.Current.Response.Write(js);
if (!page.Clientscript.IsStartupscriptRegistered(page.GetType(), "JavascriptLocationHref"))
{
page.Clientscript.RegisterStartupscript(page.GetType(), "JavascriptLocationHref", js);
}
#endregion
}

///
/// 打开指定大小位置的模式对话框
///

/// 连接地址
///
///
/// 距离上位置
/// 距离左位置
public static void ShowModalDialogWindow(string webFormUrl, int width, int height, int top, int left, Page page)
{
#region
string features = "dialogWidth:" + width.ToString() + "px"
+ ";dialogHeight:" + height.ToString() + "px"
+ ";dialogLeft:" + left.ToString() + "px"
+ ";dialogTop:" + top.ToString() + "px"
+ ";center:yes;help=no;resizable:no;status:no;scroll=yes";
ShowModalDialogWindow(webFormUrl, features, page);
#endregion
}
///
/// 弹出模态窗口
///

///
///
public static void ShowModalDialogWindow(string webFormUrl, string features, Page page)
{
string js = ShowModalDialogJavascript(webFormUrl, features);
//HttpContext.Current.Response.Write(js);
if (!page.Clientscript.IsStartupscriptRegistered(page.GetType(), "ShowModalDialogWindow"))
{
page.Clientscript.RegisterStartupscript(page.GetType(), "ShowModalDialogWindow", js);
}
}
///
/// 弹出模态窗口
///

///
///
///
public static string ShowModalDialogJavascript(string webFormUrl, string features)
{
#region
string js = @"";
return js;
#endregion
}
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/58916.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号