asp.net中javascript与后台c#交互
最近做一个小项目,网页中嵌入googlemaps,输入经纬度坐标可以定位地图位置并加注标记,点击标记获取远端摄像头数据并在视频窗口实现播放。在实际操作过程中,由于经纬度数据和视频登录的用户名密码数据均要从后台数据库中提取,而第三版的googlemapsapi又是在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也可以)
publicstringss() { return("a"); }
2、在html里用<%=ss()%>可以调用//是C#中后台的函数名称
前台脚本
<scriptlanguage=javascript> vara="<%=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.添加usingSystem.Web.Services;
示例:
前台JavaScript代码
<htmlxmlns="http://www.w3.org/1999/xhtml"> <headrunat="server"> <title>无标题页</title> <scripttype="text/javascript"> functionJsCallCSharp(param1) { PageMethods.sayhell(param1,onSayHelloSucceeded);//sayhell是后台标注了【webMethod】属性的方法param1是传入该方法的参数,onSayHelloSucceeded是回调函数主要是对后台返回的结果进一步处理 } functiononSayHelloSucceeded(result)//绑定的回调函数 { alert(result); } </script> </head> <body> <formid="form1"runat="server"> <asp:ScriptManagerID="ScriptManager1"runat="server"EnablePageMethods="true">//ScriptManager控件管理脚本的,注意设置EnablePageMethods="true"此属性 </asp:ScriptManager> <div> <inputtype="button"onclick="JsCallCSharp('hello')"/> </div> </form> </body> </html>
后台代码(.cs文件)
usingSystem; usingSystem.Configuration; usingSystem.Data; usingSystem.Linq; usingSystem.Web; usingSystem.Web.Security; usingSystem.Web.UI; usingSystem.Web.UI.HtmlControls; usingSystem.Web.UI.WebControls; usingSystem.Web.UI.WebControls.WebParts; usingSystem.Xml.Linq; usingSystem.Web.Services;//添加web服务引用 publicpartialclass_Default:System.Web.UI.Page { protectedvoidPage_Load(objectsender,EventArgse) { } [WebMethod]//标示为web服务方法属性 publicstaticstringsayhell(stringsay)//注意函数的修饰符,只能是静态的 { returnsay; } }
方法三:JavaScript异步调用定义在Web服务类中的方法
1.添加一个web服务标示该服务为允许使用ASP.NETAJAX从脚本中调用此Web服务
对应属性为[System.Web.Script.Services.ScriptService]
2.将该方法声明public并将该方法标示为[webMethod]属性方法
3.在页面中ScriptManager控件并添加web服务引用
4.在客户端使用如下JavaScript语法调用web服务方法
WebService.HelloWorld("helloWord",function(res)//Webservice是web服务页面名称
HelloWord为web服务页面类中的方 法,function为回调JavaScript函数主要是处理返回的结果
{
alert(res);
});
示例:
页面代码
<htmlxmlns="http://www.w3.org/1999/xhtml"> <headrunat="server"> <title>无标题页</title> <scripttype="text/javascript"> functionJsCallCSharp(param1) { PageMethods.sayhell(param1,onSayHelloSucceeded); } functiononSayHelloSucceeded(result) { alert(result); } //该方法为调用的函数 functionJsCallWebService() { WebService.HelloWorld("helloWord",function(res)//调用web服务 { alert(res); }); } </script> </head> <body> <formid="form1"runat="server"> <asp:ScriptManagerID="ScriptManager1"runat="server"EnablePageMethods="true"> <Services><asp:ServiceReferencePath="~/WebService.asmx"/></Services>//注意要引用web服务 </asp:ScriptManager> <div> <inputtype="button"onclick="JsCallCSharp('hello')"value="测试C#后台页"/> <inputtype="button"onclick="JsCallWebService()"value="测试web后台类"/> </div> </form> </body> </html>
web服务后台代码
usingSystem; usingSystem.Collections; usingSystem.Linq; usingSystem.Web; usingSystem.Web.Services; usingSystem.Web.Services.Protocols; usingSystem.Xml.Linq; ///<summary> ///WebService的摘要说明 ///</summary> [WebService(Namespace="http://tempuri.org/")] [WebServiceBinding(ConformsTo=WsiProfiles.BasicProfile1_1)] //若要允许使用ASP.NETAJAX从脚本中调用此Web服务,请取消对下行的注释。 [System.Web.Script.Services.ScriptService]//注意要添加该标示 publicclassWebService:System.Web.Services.WebService{ publicWebService(){ //如果使用设计的组件,请取消注释以下行 //InitializeComponent(); } [WebMethod]//方法要标示的属性 publicstringHelloWorld(stringresult){ returnresult; } }
二、JavaScript访问C#变量
方法一:
a、通过页面上隐藏域访问,可以在后台把c#变量值保存到隐藏文本域当中。
<inputid="xx"type="hidden"runat="server">
b、然后在前台javascript当中直接取隐藏文本域的值。
document.getElementByIdx_x('xx').value
方法二:
a、在服务器端变量赋值后在页面注册脚本
Page.RegisterStartScript("","<scriptlanguage='javascript'>varvary="+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 varsiteName="<%=Session["siteName"]%>";
四、C#代码执行JavaScript函数和调用JavaScript函数
方法一:C#中使用ScriptManager.RegisterStartupScript(this,this.GetType(),"edit","CSharpCallJs('"+param1+"','"+param2+"')",
示例:
脚本函数
functionCSharpCallJs(param1,param2) { alert(param1+param2); }
页面后台代码
ScriptManager.RegisterStartupScript(this,this.GetType(),"edit","CSharpCallJs('"+param1+"','"+param2+"');",true);//关键代码调用页面脚本函数的代码
方法二:使用隐藏域或者Literal控件,在前台使用js脚本把一些js函数控制的值写进隐藏域或者Literal控件,然后前台使用Hidden.Value或者Literal.Text读取前台值。
以下是代码片段:
.aspx functionGetTitleID(obj) { sTitleID=obj if(sTitleID!=null) document.getElementByIdx_x("HiddenField1").value=type+','+sTitleID; else document.getElementByIdx_x("HiddenField1").value=type+',0'; } .cs stringhiddenValue=this.HiddenField1.Value;
方法三:Page.RegisterStartupScript("function","<script>你要调用的javascript函数名称;</script>");
以上就是asp.net中javascript与后台c#交互的方法,每一种情况都有对应的解决方法,希望能够帮助到大家。