代碼期間,將做工程過程比較常用的一些代碼片段做個備份,如下的代碼內(nèi)容是關(guān)于C#封裝的JS(JavaScript)操作類的代碼,應(yīng)該能對各位朋友有幫助。
創(chuàng)新互聯(lián)建站專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站設(shè)計、成都網(wǎng)站設(shè)計、殷都網(wǎng)絡(luò)推廣、微信小程序開發(fā)、殷都網(wǎng)絡(luò)營銷、殷都企業(yè)策劃、殷都品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎;創(chuàng)新互聯(lián)建站為所有大學(xué)生創(chuàng)業(yè)者提供殷都建站搭建服務(wù),24小時服務(wù)熱線:18982081108,官方網(wǎng)址:www.cdcxhl.com
using System.Web;
namespace DotNet.Utilities
{
public class JsHelper
{
public static void AlertAndRedirect(string message, string toURL)
{
string js = "";
HttpContext.Current.Response.Write(string.Format(js, message, toURL));
HttpContext.Current.Response.End();
}
public static void AlertAndGoHistory(string message, int value)
{
string js = @"";
HttpContext.Current.Response.Write(string.Format(js, message, value));
HttpContext.Current.Response.End();
}
public static void Redirect(string toUrl)
{
string js = @"";
HttpContext.Current.Response.Write(string.Format(js, toUrl));
}
public static void AlertAndParentUrl(string message, string toURL)
{
string js = "";
HttpContext.Current.Response.Write(string.Format(js, message, toURL));
}
public static void ParentRedirect(string ToUrl)
{
string js = "";
HttpContext.Current.Response.Write(string.Format(js, ToUrl));
}
public static void BackHistory(int value)
{
string js = @"";
HttpContext.Current.Response.Write(string.Format(js, value));
HttpContext.Current.Response.End();
}
public static void Alert(string message)
{
string js = "";
HttpContext.Current.Response.Write(string.Format(js, message));
}
public static void RegisterScriptBlock(System.Web.UI.Page page, string _ScriptString)
{
page.ClientScript.RegisterStartupScript(page.GetType(), "scriptblock", "");
}
}
}