A class commonly used in ASP.NET to output JS scripts

  • 2020-05-09 18:23:02
  • OfStack

The code of the whole program is as follows:
 
using System; 
using System.Collections.Generic; 
using System.Text; 
using System.Web; 
using System.Web.UI; 
/// <summary> 
///  The pop-up JavaScript A small window  
/// </summary> 
/// <param name="js"> Window information </param> 
public static void Alert(string message, Page page) 
{ 
#region 
string js = @"<Script language='JavaScript'> 
alert('" + message + "');</Script>"; 
//HttpContext.Current.Response.Write(js); 
if (!page.ClientScript.IsStartupScriptRegistered(page.GetType(), "alert")) 
{ 
page.ClientScript.RegisterStartupScript(page.GetType(), "alert", js); 
} 
#endregion 
} 

/// <summary> 
///  The message box pops up and goes to the new one URL 
/// </summary> 
/// <param name="message"> The message content </param> 
/// <param name="toURL"> Connection address </param> 
public static void AlertAndRedirect(string message, string toURL, Page page) 
{ 
#region 
string js = "<script language=javascript>alert('{0}');window.location.replace('{1}')</script>"; 
//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 
} 

/// <summary> 
///  Back to history  
/// </summary> 
/// <param name="value">-1/1</param> 
public static void GoHistory(int value, Page page) 
{ 
#region 
string js = @"<Script language='JavaScript'> 
history.go({0}); 
</Script>"; 
//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 
} 

/// <summary> 
///  Close the current window  
/// </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> 
///  Refresh the parent window  
/// </summary> 
public static void RefreshParent(string url, Page page) 
{ 
#region 
string js = @"<Script language='JavaScript'> 
window.opener.location.href='" + url + "';window.close();</Script>"; 
//HttpContext.Current.Response.Write(js); 
if (!page.ClientScript.IsStartupScriptRegistered(page.GetType(), "RefreshParent")) 
{ 
page.ClientScript.RegisterStartupScript(page.GetType(), "RefreshParent", js); 
} 
#endregion 
} 


/// <summary> 
///  Refresh open window  
/// </summary> 
public static void RefreshOpener(Page page) 
{ 
#region 
string js = @"<Script language='JavaScript'> 
opener.location.reload(); 
</Script>"; 
//HttpContext.Current.Response.Write(js); 
if (!page.ClientScript.IsStartupScriptRegistered(page.GetType(), "RefreshOpener")) 
{ 
page.ClientScript.RegisterStartupScript(page.GetType(), "RefreshOpener", js); 
} 
#endregion 
} 


/// <summary> 
///  Opens a new form of the specified size  
/// </summary> 
/// <param name="url"> address </param> 
/// <param name="width"> wide </param> 
/// <param name="heigth"> high </param> 
/// <param name="top"> The first position </param> 
/// <param name="left"> Left position </param> 
public static void OpenWebFormSize(string url, int width, int heigth, int top, int left, Page page) 
{ 
#region 
string js = @"<Script language='JavaScript'>window.open('" + url + @"','','height=" + heigth + ",width=" + width + ",top=" + top + ",left=" + left + ",location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,titlebar=no,toolbar=no,directories=no');</Script>"; 
//HttpContext.Current.Response.Write(js); 
if (!page.ClientScript.IsStartupScriptRegistered(page.GetType(), "OpenWebFormSize")) 
{ 
page.ClientScript.RegisterStartupScript(page.GetType(), "OpenWebFormSize", js); 
} 
#endregion 
} 


/// <summary> 
///  Turn to Url Set pages  
/// </summary> 
/// <param name="url"> Connection address </param> 
public static void JavaScriptLocationHref(string url, Page page) 
{ 
#region 
string js = @"<Script language='JavaScript'> 
window.location.replace('{0}'); 
</Script>"; 
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 
} 

/// <summary> 
///  Opens the mode dialog box for the specified size and location  
/// </summary> 
/// <param name="webFormUrl"> Connection address </param> 
/// <param name="width"> wide </param> 
/// <param name="height"> high </param> 
/// <param name="top"> Distance up position </param> 
/// <param name="left"> Distance left </param> 
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 
} 
/// <summary> 
///  Pop up modal window  
/// </summary> 
/// <param name="webFormUrl"></param> 
/// <param name="features"></param> 
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); 
} 
} 
/// <summary> 
///  Pop up modal window  
/// </summary> 
/// <param name="webFormUrl"></param> 
/// <param name="features"></param> 
/// <returns></returns> 
public static string ShowModalDialogJavascript(string webFormUrl, string features) 
{ 
#region 
string js = @"<script language=javascript> 
showModalDialog('" + webFormUrl + "','','" + features + "');</script>"; 
return js; 
#endregion 
} 

Related articles: