中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#如何實現前臺與后臺方法互調

發布時間:2021-11-23 23:23:31 來源:億速云 閱讀:153 作者:柒染 欄目:編程語言

本篇文章為大家展示了C#如何實現前臺與后臺方法互調,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

前臺與后臺方法互調是很多讀者關心的功能。下面提供的代碼,可以實現C#前臺與后臺方法互調的目的。

< %@ Page Language="C#" AutoEventWireup="true" CodeFile="JavaScript get Net Function.aspx.cs" Inherits="JavaScript_get_Net_Function" %>  < !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  < html xmlns="http://www.w3.org/1999/xhtml"> < head runat="server">     < title>前臺與后臺方法護調總結< /title>     < %--          JavaScript異步調用定義在ASP.Net頁面中的方法, 我們需要:              1.將該方法聲明為公有(public);              2.將該方法聲明為類方法(C#中的static,VB.NET中的Shared),而不是實例方法;              3.將該方法添加【WebMethod】屬性              4.將頁面中ScriptManager控件的EnablePageMethods屬性設置為true;              5.在客戶端使用如下JavaScript語法調用該頁面方法                  PageMethods.[MethodName](param1,param2,...,callbackFunction);              6.為客戶端異步調用指定回調函數,在回調函數中接受返回值并進一步處理;              7.添加 using System.Web.Services;      --%>          < %--          ASP.Net后臺調用JavaScript function的方法,我們要注意:              1.盡量少用Response.Write(< script>< /script>);這種方法,它會影響CSS導致頁面效果偏差              2.C#中使用ScriptManager.RegisterStartupScript(this, this.GetType(), "edit", "JS('"+param1+"','"+param2+"')", true);              3.添加 using System.Web.UI;      --%>         < script type="text/javascript">     /*-------------JavaScript調用.Net后臺Start----------------------------------*/          function JsCallCSharp(param1)          {              PageMethods.SayHelloFromPage(param1,onSayHelloSucceeded);          }                   function onSayHelloSucceeded(result)          {              alert(result);          }  /*-------------JavaScript調用.Net后臺End----------------------------------*/           /*-------------.Net調用JavaScript Start-----------------------------------*/          function CSharpCallJs(param1,param2)          {              alert(param1 + param2);          }  /*-------------.Net調用JavaScript Start-----------------------------------*/      < /script>      < /head> < body>     < form id="form1" runat="server">     < div>         < asp:ScriptManager ID="ScriptManager1" EnablePageMethods="true" runat="server" />     < /div>          < asp:Button ID="Button1" onclick="Button1_Click" OnClientClick="JsCallCSharp('takako');" runat="server" Text="Button1" />          < /form> < /body> < /html>

前臺與后臺方法互調的C#代碼

using System;  using System.Web.Services;  using System.Web.UI;   public partial class JavaScript_get_Net_Function : System.Web.UI.Page  {      protected void Page_Load(object sender, EventArgs e)      {       }       protected void Button1_Click(object sender, EventArgs e)      {          string param1 = "你好:";          string param2 = "takako_mu";          ScriptManager.RegisterStartupScript(this, this.GetType(), "edit", "CSharpCallJs('" + param1 + "','" + param2 + "');", true);      }       [WebMethod]      public static string SayHelloFromPage(string name)      {          return string.Format("Hello {0}!", name);      }  }

上述內容就是C#如何實現前臺與后臺方法互調,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

瑞安市| 延长县| 揭西县| 浑源县| 靖安县| 南川市| 碌曲县| 松阳县| 涡阳县| 广灵县| 乡城县| 平遥县| 阳春市| 淮滨县| 临颍县| 周至县| 湘潭市| 紫金县| 丘北县| 乡城县| 冀州市| 图片| 炉霍县| 格尔木市| 如皋市| 木兰县| 永昌县| 芜湖市| 潜江市| 铁岭市| 长寿区| 定远县| 尼勒克县| 龙陵县| 蓬莱市| 兰州市| 丹凤县| 吉林省| 文昌市| 拜城县| 昌宁县|