Ajax jquery返回值到aspx页面
本文关键字:aspx 页面 返回值 jquery Ajax | 更新日期: 2023-09-27 18:06:28
我有一个aspx页面,其中包含一个jquery/ajax调用到我的。cs,其中一个存储过程被执行。存储过程返回一个int值,我希望将该值传递回原始表单,而不执行页面刷新。
到目前为止,ajax调用工作得很好。存储过程正在更新我的sql数据库。我还能够将存储过程输出的int放入.cs页面的本地变量中。当我试图将该变量存储到aspx页面上的隐藏字段中时,问题就出现了。 Jquery/Ajax api声明传递给成功函数的三个参数之一是"从服务器返回的数据"。这很好,但我不明白如何告诉ajax"这是我想返回到我的成功函数的变量"。下面是我总结的。aspx代码:
var dataToSend = { somedata: $("#somefield").val(), MethodName: 'myMethod'};
var options =
{
url: '<%=ResolveUrl("~/mypage.aspx") %>',
async: false,
data: dataToSend,
dataType: 'text',
type: 'POST',
success: function (result) {
// I would like to store the returned data
// into a hidden field on the client side (this aspx page)
alert(result); //currently the result only shows the aspx/html of my page.
下面是我的。cs代码的总结版本:
using System;
using System.Collections.Generic;
using System.Data; //
using System.Data.SqlClient; //
using System.Data.SqlTypes; //
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Services;
public partial class _Default : System.Web.UI.Page
{
public int passmetoaspx;
private string strsomedata;
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
if (Request.Form["MethodName"] == "myMethod")
{
updateDatabase();
return;
}
}
}
protected void updateDatabase()
{
try
{
// create string variables for form data
somedata = Request.Form["somedata"].ToString();
using (SqlConnection sconn = new SqlConnection(myconnstring))
{
using (SqlCommand scmd = new SqlCommand("mystored_procedure", sconn))
{
scmd.CommandType = CommandType.StoredProcedure;
scmd.Parameters.Add("@somedata", SqlDbType.VarChar).Value = strsomedata;
scmd.Parameters.Add("@sndtoASPXpage", SqlDbType.Int);
scmd.Parameters["@sndtoASPXpage"].Direction = ParameterDirection.Output;
sconn.Open();
scmd.ExecuteScalar();
int returnUID;
passmetoASPXpage = int.Parse(scmd.Parameters["@sendtoASPXpage"].Value.ToString());
}
}
}
catch (Exception er)
{
}
}
请给我指一下正确的方向。谢谢你。
可能不是最好的解决方案,但你可以这样做:
protected void updateDatabase()
{
try
{
// create string variables for form data
somedata = Request.Form["somedata"].ToString();
using (SqlConnection sconn = new SqlConnection(myconnstring))
{
using (SqlCommand scmd = new SqlCommand("mystored_procedure", sconn))
{
scmd.CommandType = CommandType.StoredProcedure;
scmd.Parameters.Add("@somedata", SqlDbType.VarChar).Value = strsomedata;
scmd.Parameters.Add("@sndtoASPXpage", SqlDbType.Int);
scmd.Parameters["@sndtoASPXpage"].Direction = ParameterDirection.Output;
sconn.Open();
scmd.ExecuteScalar();
int returnUID;
passmetoASPXpage = int.Parse(scmd.Parameters["@sendtoASPXpage"].Value.ToString());
//Write to REsponse
HttpContext.Current.Response.Write(passmetoASPpage.ToString());
HttpContext.Current.Response.End();
}
}
}
catch (Exception er)
{
}
}