最近做一個小項目,網頁中嵌入google maps,輸入經緯度坐標可以定位地圖位置並加注標記,點擊標記獲取遠端攝像頭數據並在視頻窗口實現播放。在實際操作過程中,由於經緯度數據和視頻登錄的用戶名密碼數據均要從後台數據庫中提取,而第三版的google maps api又是在javascript中實現的,因此不可避免的需要前端腳本與後台進行交互。由於是在asp.net中實現,故問題演化成asp.net中javascript與後台c#如何進行交互。
C#代碼與javaScript函數的相互調用主要有四個方面:
1.如何在JavaScript訪問C#函數?
2.如何在JavaScript訪問C#變量?
3.如何在C#中訪問JavaScript的已有變量?
4.如何在C#中訪問JavaScript函數?
一、javaScript函數中執行C#代碼中的函數:
方法一:頁面和頁面類結合
1、函數聲明為public
後台代碼(把public改成protected也可以)
public string ss() { return("a"); }
2、在html裡用<%=ss()%>可以調用//是C#中後台的函數名稱
前台腳本
<script language=javascript> var a = "<%=ss()%>";//JavaScript中調用C#後台的函數 alert(a); </script>
方法二: 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;
示例:
前台JavaScript代碼
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>無標題頁</title> <script type="text/javascript"> function JsCallCSharp(param1) { PageMethods.sayhell(param1,onSayHelloSucceeded);//sayhell是後台標注了【webMethod】屬性的方法 param1是傳入該方法的參數,onSayHelloSucceeded是回調函數主要是對後台返回的結果進一步處理 } function onSayHelloSucceeded(result)//綁定的回調函數 { alert(result); } </script> </head> <body> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true">//ScriptManager控件管理腳本的,注意設置EnablePageMethods="true"此屬性 </asp:ScriptManager> <div> <input type="button" onclick="JsCallCSharp('hello')" /> </div> </form> </body> </html>
後台代碼(.cs文件)
using System; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; using System.Web.Services;//添加web服務引用 public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } [WebMethod]//標示為web服務方法屬性 public static string sayhell(string say)//注意函數的修飾符,只能是靜態的 { return say; } }
方法三: JavaScript異步調用定義在Web服務類中的方法
1.添加一個web服務標示該服務為 允許使用 ASP.NET AJAX 從腳本中調用此 Web 服務
對應屬性為[System.Web.Script.Services.ScriptService]
2.將該方法聲明public並將該方法標示為[webMethod]屬性方法
3.在頁面中ScriptManager控件並添加web服務引用
<Services><asp:ServiceReferencePath="~/WebService.asmx" /></Services>
4.在客戶端使用如下JavaScript語法調用web服務方法
WebService.HelloWorld("helloWord",function(res)//Webservice是web服務頁面名稱
HelloWord為web服務頁面類中的方 法,function為回調JavaScript函數主要是處理返回的結果
{
alert(res);
});
示例:
頁面代碼
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>無標題頁</title> <script type="text/javascript"> function JsCallCSharp(param1) { PageMethods.sayhell(param1,onSayHelloSucceeded); } function onSayHelloSucceeded(result) { alert(result); } //該方法為調用的函數 function JsCallWebService() { WebService.HelloWorld("helloWord",function(res)//調用web服務 { alert(res); }); } </script> </head> <body> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true" > <Services><asp:ServiceReference Path="~/WebService.asmx" /></Services>//注意要引用web服務 </asp:ScriptManager> <div> <input type="button" onclick="JsCallCSharp('hello')" value="測試C#後台頁" /> <input type="button" onclick="JsCallWebService()" value="測試web後台類" /> </div> </form> </body> </html>
web服務後台代碼
using System; using System.Collections; using System.Linq; using System.Web; using System.Web.Services; using System.Web.Services.Protocols; using System.Xml.Linq; /// <summary> ///WebService 的摘要說明 /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] //若要允許使用 ASP.NET AJAX 從腳本中調用此 Web 服務,請取消對下行的注釋。 [System.Web.Script.Services.ScriptService]//注意要添加該標示 public class WebService : System.Web.Services.WebService { public WebService () { //如果使用設計的組件,請取消注釋以下行 //InitializeComponent(); } [WebMethod]//方法要標示的屬性 public string HelloWorld(string result) { return result; } }
二、JavaScript訪問C#變量
方法一:
a、通過頁面上隱藏域訪問,可以在後台把c#變量值保存到隱藏文本域當中。
<input id="xx" type="hidden" runat="server">
b、然後在前台javascript當中直接取隱藏文本域的值。
document.getElementByIdx_x('xx').value
方法二:
a、在服務器端變量賦值後在頁面注冊腳本
Page.RegisterStartScript(" ","<script language='javascript'>var vary=" + value + "</script>");
value是後台變量,然後javascript中可以直接訪問vary值,它的值就是後台變量value的值,這種方式只不過是能過一種間接的方式來訪問c#變量。
三、C#中訪問JavaScript的已有變量
方法一:前台使用服務器文本控件隱藏域,將js變量值寫入其中;後台直接通過控件id訪問和調用,即後台用Request["id"]來獲取值。
方法二:可以用cookie或session存儲變量值,後台直接使用
使用session以下是代碼片段:
.cs if (Session["siteName"] == null)//判斷是否存在指定Key值的Session變量 Session["siteName"] = "";//如果不存在則創建Session變量 //給Session["siteName"]變量賦值 .aspx var siteName="<%=Session["siteName"] %>";
四、C#代碼執行JavaScript函數和調用JavaScript函數
方法一:C#中使用ScriptManager.RegisterStartupScript(this, this.GetType(), "edit", "CSharpCallJs('"+param1+"','"+param2+"')",
示例:
腳本函數
function CSharpCallJs(param1,param2) { alert(param1 + param2); }
頁面後台代碼
ScriptManager.RegisterStartupScript(this, this.GetType(), "edit", "CSharpCallJs('" + param1 + "','" + param2 + "');", true);//關鍵代碼調用頁面腳本函數的代碼
方法二:使用隱藏域或者Literal控件,在前台使用js腳本把一些js函數控制的值寫進隱藏域或者Literal控件,然後前台使用Hidden.Value或者Literal.Text讀取前台值。
以下是代碼片段:
.aspx function GetTitleID(obj) { sTitleID=obj if(sTitleID!=null) document.getElementByIdx_x("HiddenField1").value=type+','+sTitleID; else document.getElementByIdx_x("HiddenField1").value=type+',0'; } .cs string hiddenValue = this.HiddenField1.Value;
方法三:Page.RegisterStartupScript("function","<script>你要調用的javascript函數名稱;</script>");
以上就是asp.net中javascript與後台c#交互的方法,每一種情況都有對應的解決方法,希望能夠幫助到大家。