常用JavaScript代碼提示公共類封裝
using System;
using System.Web;
namespace Jake.PublicJS
{
/// <summary>
/// Summary description for PublicJS
/// </summary>
public class PublicJS
{
public PublicJS()
{
//
// TODO: Add constructor logic here
//
}
/// <summary>
/// 1.靜態(tài)方法,彈出信息窗體
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <param name="description">信息內(nèi)容</param>
/// <example>
/// PublicJS.Alert(this,"NiHao!");
/// </example>
public static void Alert(System.Web.UI.Page page, string description)
{
if (description != null)
{
string scriptString = "<script language=JavaScript><!--
";
scriptString += "alert('" + description + "');";
scriptString += "
// --></script>";
if (!page.IsClientScriptBlockRegistered("clientScript"))
page.RegisterClientScriptBlock("clientScript", scriptString);
}
else
{
Alert(page, "描述信息為空!");
}
}
/// <summary>
/// 2.靜態(tài)方法,彈出信息窗體,并刷新頁面
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <param name="description">信息內(nèi)容</param>
/// <example>
/// PublicJS.Alert(this,"NiHao!");
/// </example>
public static void ReLoadMessage(System.Web.UI.Page page, string description, string PageID)
{
if (description != null)
{
string scriptString = "<script language=JavaScript><!--
";
scriptString += "alert('" + description + "');";
scriptString += "parent." + PageID + ".location.reload()";
scriptString += "
// --></script>";
if (!page.IsClientScriptBlockRegistered("clientScript"))
page.RegisterClientScriptBlock("clientScript", scriptString);
}
else
{
Alert(page, "描述信息為空!");
}
}
public static void Redirect(string url)
{
HttpResponse Response;
Response = HttpContext.Current.Response;
Response.Write("<script language=JScript><!--
\n");
Response.Write("window.location='" + url + "';\n");
Response.Write("
// --></script>\n");
}
/// <summary>
/// 彈出對(duì)話框,轉(zhuǎn)向所指頁面
/// </summary>
/// <param name="description">提示信息</param>
/// <param name="url">頁面</param>
public static void MsgBoxRedrict(string description, string url)
{
HttpResponse Response;
Response = HttpContext.Current.Response;
Response.Write("<script language=JScript><!--
\n");
Response.Write("alert('" + description + "');\n");
Response.Write("window.location='" + url + "';\n");
Response.Write("
// --></script>\n");
//Response.Redirect(url);
}
/// <summary>
/// 彈出對(duì)話框,確實(shí)轉(zhuǎn)向所指頁面
/// </summary>
/// <param name="description">提示信息</param>
/// <param name="url">頁面</param>
/// <param name="PrintUrl">確定后轉(zhuǎn)向的頁面</param>
public static void MsgBoxRedrict(string description, string url, string PrintUrl)
{
HttpResponse Response;
Response = HttpContext.Current.Response;
Response.Write("<script language=JScript><!--
\n");
Response.Write("function prints()\n");
Response.Write("{\n if(confirm('" + description + "'))\n");
Response.Write("{window.location='" + PrintUrl + "';}\n");
Response.Write("else\n");
Response.Write("{window.location='" + url + "';}\n}\n");
Response.Write("prints();\n");
Response.Write("
// --></script>\n");
}
/// <summary>
/// 彈出對(duì)話框,轉(zhuǎn)向所指頁面
/// </summary>
/// <param name="description">提示信息</param>
public static void MsgBoxRedrict(string description)
{
HttpResponse Response;
Response = HttpContext.Current.Response;
Response.Write("<script language=JScript><!--
\n");
Response.Write("alert('" + description + "');\n");
Response.Write("history.go(-1);\n");
Response.Write("
// --></script>\n");
}
/// <summary>
///2 靜態(tài)方法,關(guān)閉一個(gè)網(wǎng)頁的父窗口,例如一個(gè)frame關(guān)閉其父窗口。
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <example>
/// PublicJS.CloseParent(this);
/// </example>
public static void CloseParent(System.Web.UI.Page page)
{
string scriptString = "<script language=JavaScript><!--
";
scriptString += "window.parent.close();";
scriptString += "
// --></script>";
if (!page.IsClientScriptBlockRegistered("clientScript"))
page.RegisterClientScriptBlock("clientScript", scriptString);
}
/// <summary>
///2 靜態(tài)方法,關(guān)閉一個(gè)網(wǎng)頁窗口。
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <example>
/// PublicJS.CloseParent(this);
/// </example>
public static void ClosePage(System.Web.UI.Page page)
{
string scriptString = "<script language=JavaScript><!--
";
scriptString += "window.close();";
scriptString += "
// --></script>";
if (!page.IsClientScriptBlockRegistered("clientScript"))
page.RegisterClientScriptBlock("clientScript", scriptString);
}
/// <summary>
///3 靜態(tài)方法,輸出一則消息后關(guān)閉一個(gè)模態(tài)網(wǎng)頁窗口并刷新父窗口
/// 前提條件是必須調(diào)用此類中的OpenModalDialog方法
/// 在該方法中自動(dòng)生成刷新方法才能實(shí)現(xiàn)父頁面刷新。
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <param name="page">輸出消息</param>
/// <example>
/// PublicJS.CloseModalDialog(this);
/// </example>
public static void CloseModalDialogMessage(System.Web.UI.Page page, string Message)
{
string scriptString = "<script language=JavaScript><!--
";
scriptString += "alert('" + Message + "');";
scriptString += "window.close();";
scriptString += "
// --></script>";
if (!page.IsClientScriptBlockRegistered("clientScript"))
page.RegisterClientScriptBlock("clientScript", scriptString);
}
/// <summary>
///3 靜態(tài)方法,關(guān)閉一個(gè)模態(tài)網(wǎng)頁窗口并刷新父窗口
/// 前提條件是必須調(diào)用此類中的OpenModalDialog方法
/// 在該方法中自動(dòng)生成刷新方法才能實(shí)現(xiàn)父頁面刷新。
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <example>
/// PublicJS.CloseModalDialog(this);
/// </example>
public static void CloseModalDialog(System.Web.UI.Page page)
{
string scriptString = "<script language=JavaScript><!--
";
scriptString += "window.close();";
scriptString += "
// --></script>";
if (!page.IsClientScriptBlockRegistered("clientScript"))
page.RegisterClientScriptBlock("clientScript", scriptString);
}
/// <summary>
/// 關(guān)閉模態(tài)網(wǎng)頁并傳值到父頁面
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <param name="strValue">需要傳遞的值</param>
public static void CloseModalDialog(System.Web.UI.Page page, string strValue)
{
string scriptString = "<script language=JavaScript><!--
";
scriptString += "window.returnValue='" + strValue.Trim() + "';";
scriptString += "window.close();";
scriptString += "
// --></script>";
if (!page.IsClientScriptBlockRegistered("clientScript"))
page.RegisterClientScriptBlock("clientScript", scriptString);
}
/// <summary>
///4 靜態(tài)方法,關(guān)閉一個(gè)網(wǎng)頁窗口。
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <example>
/// PublicJS.CloseWindow(this);
/// </example>
public static void CloseWindow(System.Web.UI.Page page)
{
string scriptString = "<script language=JavaScript><!--
";
scriptString += "window.opener=null;";
scriptString += "window.close();";
scriptString += "
// --></script>";
if (!page.IsClientScriptBlockRegistered("clientScript"))
page.RegisterClientScriptBlock("clientScript", scriptString);
}
/// <summary>
///5 靜態(tài)方法,執(zhí)行客戶端一小塊腳本語言,
///利用page的RegisterClientScriptBlock方法在客戶端注冊(cè)一段腳本,
///參數(shù)script無需包括html標(biāo)記<script type="text/javascript"><!--
、
// --></script>。
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <param name="script">javascript腳本</param>
/// <example>
/// PublicJS.ExecuteBlock(this,"alert("Hello");");
/// </example>
public static void ExecuteBlock(System.Web.UI.Page page, string script)
{
if (script != null)
{
string scriptString = "<script language=JavaScript><!--
";
scriptString += script;
scriptString += "
// --></script>";
if (!page.IsClientScriptBlockRegistered("clientScript9"))
page.RegisterClientScriptBlock("clientScript9", scriptString);
}
else
{
Alert(page, "JavaScript腳本不能為空!");
}
}
/// <summary>
///6 靜態(tài)方法,打開一個(gè)網(wǎng)頁對(duì)話框,并生成刷新頁面方法。
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <param name="URL">頁面名稱</param>
/// <param name="Width">寬度</param>
/// <param name="Height">高度</param>
/// <example>
/// PublicJS.OpenModalDialog(page,"weihu.aspx",700,350);
/// </example>
public static void OpenModalDialog(System.Web.UI.Page page, string URL, int Width, int Height)
{
if (URL != null)
{
if (Width == 0 || Height == 0)
{
Alert(page, "頁面寬度和高度不能為零!");
return;
}
string scriptString = "<script language='javascript'><!--
";
scriptString += "function Refreshs()";
scriptString += "{";
//scriptString += "window.location.href= window.location.href;";
scriptString += "}";
scriptString += "window.showModalDialog('" + URL + "',window,'dialogHeight:" + Height + "px;dialogWidth:" + Width + "px;center:Yes;help:No;scroll:auto;resizable:No;status:No;');";
scriptString += "window.location.href= window.location.href;";
scriptString += "
// --></script>";
if (!page.IsStartupScriptRegistered("Startup"))
page.RegisterStartupScript("Startup", scriptString);
}
else
{
Alert(page, "頁面地址不能為空!");
}
}
/// <summary>
///7 靜態(tài)方法,打開一個(gè)模式對(duì)話框
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <param name="URL">頁面名稱</param>
/// <param name="Attribute">屬性</param>
/// <param name="Width">寬度</param>
/// <param name="Height">高度</param>
/// <example>
/// PublicJS.OpenModalDialog(page,"weihu.aspx","scrollbars=yes,status=yes",700,350);
/// </example>
public static void OpenModalDialog(System.Web.UI.Page page, string URL, string Attribute, int Width, int Height)
{
if (URL != null)
{
if (Width == 0 || Height == 0)
{
Alert(page, "頁面寬度和高度不能為零!");
return;
}
if (Attribute == "")
Attribute = "center:Yes;help:No;scroll:No;resizable:No;status:No;";
string scriptString = "<script language='javascript'><!--
";
//scriptString += "function Refresh()";
//scriptString += "{";
scriptString += "window.showModalDialog('" + URL + "',window,'dialogHeight:" + Height + "px;dialogWidth:" + Width + "px;" + Attribute + "')";
//scriptString += " window.location.href= window.location.href;";
//scriptString += "}";
//scriptString += " Refresh();";
scriptString += "
// --></script>";
if (!page.IsStartupScriptRegistered("Startup"))
page.RegisterStartupScript("Startup", scriptString);
}
else
{
Alert(page, "頁面地址不能為空!");
}
}
/// <summary>
///8 靜態(tài)方法,打開一個(gè)無模式網(wǎng)頁對(duì)話框。
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <param name="URL">頁面名稱</param>
/// <param name="Width">寬度</param>
/// <param name="Height">高度</param>
/// <example>
/// PublicJS.OpenDialog(page,"weihu.aspx",700,350);
/// </example>
public static void OpenDialog(System.Web.UI.Page page, string URL, int Width, int Height)
{
if (URL != null)
{
if (Width == 0 || Height == 0)
{
Alert(page, "頁面寬度和高度不能為零!");
return;
}
string str = "<script language='javascript'><!--
"
+ "window.open('" + URL + "','','location=no,status=no,menubar=no,scrollbars=auto,resizable=Yes,width=" + Width + ",height=" + Height + "')"
+ "
// --></script>";
if (!page.IsClientScriptBlockRegistered("clientScript"))
page.RegisterClientScriptBlock("clientScript", str);
}
else
{
Alert(page, "頁面地址不能為空!");
}
}
/// <summary>
///9 靜態(tài)方法,打開一個(gè)IE窗口(無標(biāo)題欄、工具欄、地址欄等)。
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <param name="URL">頁面名稱</param>
/// <param name="Width">寬度</param>
/// <param name="Height">高度</param>
/// <param name="Left">左邊距</param>
/// <param name="Top">上邊距</param>
/// <example>
/// PublicJS.OpenIEWindow(page,"weihu.aspx",700,350,10,20);
/// </example>
public static void OpenIEWindow(System.Web.UI.Page page, string URL, int Width, int Height, int Left, int Top)
{
if (URL != null)
{
if (Width == 0 || Height == 0)
{
Alert(page, "頁面寬度和高度不能為零!");
return;
}
string str = "<script language='javascript'><!--
"
+ "tt = window.open('" + URL + "','','location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + Width + ",height=" + Height + ",left=" + Left + ",top=" + Top + "'); tt.focus();"
+ "
// --></script>";
if (!page.IsClientScriptBlockRegistered("clientScript"))
page.RegisterClientScriptBlock("clientScript", str);
}
else
{
Alert(page, "頁面地址不能為空!");
}
}
/// <summary>
///9 靜態(tài)方法,打開一個(gè)IE窗口(無標(biāo)題欄、工具欄、地址欄等)。
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <param name="URL">頁面名稱</param>
/// <param name="Width">寬度</param>
/// <param name="Height">高度</param>
/// <param name="Left">左邊距</param>
/// <param name="Top">上邊距</param>
/// <example>
/// PublicJS.OpenIEWindow(page,"weihu.aspx",700,350,10,20);
/// </example>
public static void OpenIEWindows(System.Web.UI.Page page, string URL, int Width, int Height, int Left, int Top)
{
if (URL != null)
{
if (Width == 0 || Height == 0)
{
Alert(page, "頁面寬度和高度不能為零!");
return;
}
//string str = "<script language='javascript'><!--
"
// + "window.open('" + URL + "','','location=no,status=no,menubar=yes,scrollbars=yes,resizable=no,width=" + Width + ",height=" + Height + ",left=" + Left + ",top=" + Top + "');"
// + "
// --></script>";
string str = "<script language='javascript'><!--
"
+ "tt = window.open('" + URL + "','','location=no,status=no,toolbar=no,menubar=yes,scrollbars=yes,resizable=yes,fullscreen=no'); tt.focus();"
+ "
// --></script>";
if (!page.IsClientScriptBlockRegistered("clientScript"))
page.RegisterClientScriptBlock("clientScript", str);
}
else
{
Alert(page, "頁面地址不能為空!");
}
}
public static void OpenIEWindows(System.Web.UI.Page page, string URL, int Width, int Height)
{
if (URL != null)
{
if (Width == 0 || Height == 0)
{
Alert(page, "頁面寬度和高度不能為零!");
return;
}
string str = "<script language='javascript'><!--
";
str += "a = window.open(\"" + URL + "\", \"\", \"fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=" + Width + ",height=" + Height + "\", true);";
str += "a.focus();";
str += "
// --></script>";
if (!page.IsClientScriptBlockRegistered("clientScript"))
page.RegisterClientScriptBlock("clientScript", str);
}
else
{
Alert(page, "頁面地址不能為空!");
}
}
/// <summary>
///10 靜態(tài)方法,打開一個(gè)IE窗口(無標(biāo)題欄、工具欄、地址欄等)。
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <param name="URL">頁面名稱</param>
/// <example>
/// PublicJS.OpenIEWindow(page,"weihu.aspx");
/// </example>
public static void OpenIEWindow(System.Web.UI.Page page, string URL)
{
if (URL != null)
{
string str = "<script language='javascript'><!--
"
+ "var Cwin=window.open('" + URL + "','','location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=screen.availWidth-20,height=screen.availHeight-20,left=10,top=10');"
+ "Cwin.resizeTo(screen.availWidth-20,screen.availHeight-20);"
+ "
// --></script>";
if (!page.IsClientScriptBlockRegistered("clientScript"))
page.RegisterClientScriptBlock("clientScript", str);
}
else
{
Alert(page, "頁面地址不能為空!");
}
}
/// <summary>
///11 靜態(tài)方法,打開一個(gè)IE窗口(無標(biāo)題欄、工具欄、地址欄等)。
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <param name="URL">頁面名稱</param>
/// <param name="Width">寬度</param>
/// <param name="Height">高度</param>
/// <example>
/// PublicJS.OpenIEWindow(page,"weihu.aspx",700,350);
/// </example>
public static void OpenIEWindow(System.Web.UI.Page page, string URL, int Width, int Height)
{
if (URL != null)
{
string str = "<script language='javascript'><!--
"
+ "var Cwin=window.open('" + URL + "','','location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + Width + ",height=" + Height + ",left=10,top=10');"
+ "Cwin.moveTo((screen.availWidth-" + Width + ")/2,(screen.availHeight-" + Height + ")/2);"
+ "
// --></script>";
if (!page.IsClientScriptBlockRegistered("clientScript"))
page.RegisterClientScriptBlock("clientScript", str);
}
else
{
Alert(page, "頁面地址不能為空!");
}
}
/// <summary>
///12 靜態(tài)方法,打開一個(gè)IE窗口(無標(biāo)題欄、工具欄、地址欄等)
///在屏幕的最右邊,上下滿屏,寬度由參數(shù)指定。
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <param name="URL">頁面名稱</param>
/// <param name="Width">寬度</param>
/// <example>
/// PublicJS.OpenIEWindowRight(page,"weihu.aspx",700);
/// </example>
public static void OpenIEWindowRight(System.Web.UI.Page page, string URL, int Width)
{
if (URL != null)
{
if (Width == 0)
{
Alert(page, "頁面寬度和高度不能為零!");
return;
}
string str = "<script language='javascript'><!--
"
+ "newwindow=window.open('" + URL + "','','location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=" + Width + ",height=document.height');"
+ "newwindow.moveTo(screen.width-" + Width + ",0);newwindow.resizeTo(" + Width + ",screen.height);"
+ "
// --></script>";
if (!page.IsClientScriptBlockRegistered("clientScript"))
page.RegisterClientScriptBlock("clientScript", str);
}
else
{
Alert(page, "頁面地址不能為空!");
}
}
/// <summary>
///13 靜態(tài)方法,打開一個(gè)IE窗口(無標(biāo)題欄、工具欄、地址欄等),在屏幕的最右邊,上下位置在中間。
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <param name="URL">頁面名稱</param>
/// <param name="Width">寬度</param>
/// <param name="Height">高度</param>
/// <example>
/// PublicJS.OpenIEWindowRight(page,"weihu.aspx",700,350);
/// </example>
public static void OpenIEWindowRight(System.Web.UI.Page page, string URL, int Width, int Height)
{
if (URL != null)
{
if (Width == 0 || Height == 0)
{
Alert(page, "頁面寬度和高度不能為零!");
return;
}
string str = "<script language='javascript'><!--
"
+ "newwindow=window.open('" + URL + "','','location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + Width + ",height=" + Height + "');"
+ "newwindow.moveTo(screen.width-" + Width + ",(screen.height-" + Height + ")/2);"
+ "
// --></script>";
if (!page.IsClientScriptBlockRegistered("clientScript"))
page.RegisterClientScriptBlock("clientScript", str);
}
else
{
Alert(page, "頁面地址不能為空!");
}
}
/// <summary>
/// 設(shè)置控件焦點(diǎn)
/// </summary>
/// <param name="kongjianmc">控件字符串</param>
public static void SheZhiJD(System.Web.UI.Page page, string kongjianmc)
{
string jiaoben = "";
if (kongjianmc != "")
{
jiaoben = "var control;";
jiaoben += "control = document.getElementById('" + kongjianmc + "');";
jiaoben += "if (control!=null) ";
jiaoben += "{document.all['" + kongjianmc + "'].focus();}";
page.RegisterStartupScript("focus", "<script type="text/javascript"><!--
" + jiaoben + "
// --></script>");
}
}
/// <summary>
///14 靜態(tài)方法,全屏打開一個(gè)IE窗口(無標(biāo)題欄、工具欄、地址欄等)。
/// </summary>
/// <param name="page">頁面對(duì)象</param>
/// <param name="URL">頁面名稱</param>
/// <example>
/// PublicJS.OpenIEWindow(page,"weihu.aspx");
/// </example>
public static void OpenIEWindowFill(System.Web.UI.Page page, string URL)
{
if (URL != null)
{
string str = "<script language='javascript'><!--
"
+ "var Cwin=window.open('" + URL + "','','location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=(screen.availWidth),height=(screen.availheight),left=10,top=10');"
//+ "alert(screen.availWidth);alert(screen.availheight); Cwin.moveTo(0,0);"
+ "
// --></script>";
if (!page.IsClientScriptBlockRegistered("clientScript"))
page.RegisterClientScriptBlock("clientScript", str);
}
else
{
Alert(page, "頁面地址不能為空!");
}
}
}
}
- 詳解javascript常用工具類的封裝
- JS類的封裝及實(shí)現(xiàn)代碼
- javascript面向?qū)ο蟀b類Class封裝類庫剖析
- javascript封裝的sqlite操作類實(shí)例
- js提取中文拼音首字母的封裝工具類
- 封裝了一個(gè)自動(dòng)生成漸變字的JS類(clip)
- JavaScript 面向?qū)ο蟪绦蛟O(shè)計(jì)詳解【類的創(chuàng)建、實(shí)例對(duì)象、構(gòu)造函數(shù)、原型等】
- JavaScript ES6 Class類實(shí)現(xiàn)原理詳解
- js定義類的方法示例【ES5與ES6】
- js類的繼承定義與用法分析
- JavaScript 類的封裝操作示例詳解
相關(guān)文章
asp.net在事件中啟動(dòng)線程來打開一個(gè)頁面的實(shí)現(xiàn)方法
點(diǎn)擊一個(gè)按鈕做兩件事情,一件需要點(diǎn)擊按鈕馬上完成,另一件事情是點(diǎn)擊按鈕后做其他事情,不會(huì)的朋友一起來看看下面是如何實(shí)現(xiàn)的2014-11-11.NET中RDLC循環(huán)處理數(shù)據(jù)的應(yīng)用分析
本篇文章介紹了,.NET中RDLC循環(huán)處理數(shù)據(jù)的應(yīng)用分析。需要的朋友參考下2013-05-05ASP.NET Core擴(kuò)展庫之Http日志的使用詳解
這篇文章主要介紹了ASP.NET Core擴(kuò)展庫之Http日志的使用詳解,幫助大家更好的理解和學(xué)習(xí)使用.net技術(shù),感興趣的朋友可以了解下2021-04-04Asp.net靜態(tài)方法之Grid轉(zhuǎn)DataTable方法實(shí)現(xiàn)步驟
GridView綁定DataTable后,如何獲取GridView綁定后顯示的值,在項(xiàng)目需求的背景下寫了一個(gè)靜態(tài)方法,經(jīng)過在項(xiàng)目中的使用,bug的修復(fù),較為穩(wěn)定2013-04-04ASP.NET:把a(bǔ)shx寫到類庫里并在頁面上調(diào)用的具體方法
最近在調(diào)整博客的架構(gòu),進(jìn)一步把表現(xiàn)和業(yè)務(wù)分離,所以要把之前用ashx搞的那些Http Handler放到類庫中,下面是具體的步驟及代碼2013-06-06.NET 6開發(fā)TodoList應(yīng)用之實(shí)現(xiàn)ActionFilter
Filter在.NET Web API項(xiàng)目開發(fā)中也是很重要的一個(gè)概念,它運(yùn)行在執(zhí)行MVC響應(yīng)的Pipeline中執(zhí)行,允許我們將一些可以在多個(gè)Action之間重用的邏輯抽取出來集中管理。本文將詳細(xì)介紹一下.NET 6如何實(shí)現(xiàn)ActionFilter,感興趣的可以學(xué)習(xí)一下2021-12-12ASP.NET DataTable去掉重復(fù)行的2種方法
這篇文章主要介紹了ASP.NET DataTable去掉重復(fù)行的2種方法,本文直接給出去重代碼,需要的朋友可以參考下2015-02-02asp.net連接數(shù)據(jù)庫 增加,修改,刪除,查詢代碼
asp.net連接數(shù)據(jù)庫,實(shí)現(xiàn)增加,修改,刪除,查詢的四大功能完整代碼。2009-07-07ASP.NET?Core設(shè)置Ocelot網(wǎng)關(guān)限流
這篇文章介紹了ASP.NET?Core設(shè)置Ocelot網(wǎng)關(guān)限流的方法,文中通過示例代碼介紹的非常詳細(xì)。對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2022-04-04