asp.net中javascript与后台c#交互(2)

 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 runat="server"> <asp:ScriptManager runat="server" EnablePageMethods="true" > <Services><asp:ServiceReference Path="~/WebService.asmx" /></Services>//注意要引用web服务 </asp:ScriptManager> <div> <input type="button" value="测试C#后台页" /> <input type="button" 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 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#交互的方法,每一种情况都有对应的解决方法,希望能够帮助到大家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjwfdz.html