Jquery调用ASHX页面
以下所有参数都正常工作,session参数有一个值,但是如何从Jquery传递会话参数?
所以下面的代码“paramater Sessionparameter”应该替换为Session [“ID”]或类似的东西.我怎样才能做到这一点?
请指教?
$('input[name$=btnTab1Save]').click( function (e) { // deBUGger; // AJAX call to the handler $.post( 'Consulting.ashx',// data to the handler in the form of queryString { tab: 'tab1',// ID is the second column within the row Ilac_ID: prevRow.find('td:eq(0)').text(),ID: SESSION_ParaMATER,begindate: $('input[name$=begindate]').val(),weigth: $('input[name$=weigth]').val(),continue: true,freq: $('input[name$=freq]').val(),reason: $('input[name*=radListreason]:checked').val(),freq2: $('input[name$=radListfreq2]:checked').val(),freetext: $('input[name$=freetext]').val() },// callback function // data is the JsON object function (data) { if (data.Success) { // close the tab } },"Json" ); });
我可以读取我的参数,如Convert.Toint(context.Request.Form [“ID”]));
data.weigth = Convert.ToInt32(context.Request.Form["weigth"]);
我试过:’<%= Session [“ID”] .ToString()%>‘,但它不起作用….
解决方法 如果信息在会话中,ASHX可以直接访问会话内容.你需要实现IReadonlySessionState,你会没事的.
<% @ webhandler language="C#" %>using System;using System.Web;using System.Web.SessionState;public class MyClass: IhttpHandler,IReadonlySessionState{ public bool IsReusable { get { return true; } } public voID ProcessRequest(httpContext ctx) { ctx.Response.Write(ctx.Session["ID"]); }}总结
以上是内存溢出为你收集整理的c# – 如何将会话参数从jquery传递到ASHX处理程序全部内容,希望文章能够帮你解决c# – 如何将会话参数从jquery传递到ASHX处理程序所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)