Sirojan Gnanaretnam
Sirojan Gnanaretnam

Reputation: 621

Adding Session Variable in C# using Ajax

I need to add variable into session state using ajax , when I tries this It didn't work. can any one please help me on this. when I click the Button It redirect to Travellerinfo.aspx page

Below is my test.aspx

   <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="test.aspx.cs" Inherits="hotelbeds.test" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Tooltip - Custom animation demo</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script type="text/javascript">
    function testbook(hotelcode) {

        $.ajax({
            type: "POST",
            url: "test.aspx/addSession",
            data: "{'hotelcode':'" + hotelcode + "'}",
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: function (msg) {
                window.location.href = "Hotelresul.aspx";
            },
            error: function (err) {
                window.location.href = "TravellerInfo.aspx";
            }
        });

    }

</script>
</head>
<body>
    <form id="form1" runat="server">

    <div>

    </div>
    </form>
</body>

</html>

CS test.aspx

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
using System.Web.Services;
using System.Configuration;
using System.Drawing;

namespace hotelbeds
{

    public partial class test : System.Web.UI.Page
    {

        protected void Page_Load(object sender, EventArgs ea)
        {
            ImageButton testbtn = new ImageButton();
            testbtn.OnClientClick = "testbook('15000')";
            form1.Controls.Add(testbtn);

        }
        [WebMethod(EnableSession = true)]
        public static void addSession(String hotelcode)
        {
            HttpContext.Current.Session.Add("hotelcode", hotelcode);

        }


    }
}

Upvotes: 1

Views: 10604

Answers (1)

Subin Jacob
Subin Jacob

Reputation: 4864

It must be

[WebMethod (EnableSession=true)]
        public static void addSession(String hotelcode)
        {
            HttpContext.Current.Session.Add("hotelcode", hotelcode);

        }

Please Note: The method must be public, static and EnableSession attribute must be true.

EDIT 1:

'return false' is added to prevent the Default function of a button. The default function of a button is to post form to server. Alternatively, event.preventDefault() can be used to prevent the default functionality.

<script type="text/javascript">
    function testbook(hotelcode) {

        $.ajax({
            type: "POST",
            url: "test.aspx/addSession",
            data: "{'hotelcode':'" + hotelcode + "'}",
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: function (msg) {
                window.location.href = "Hotelresul.aspx";
            },
            error: function (err) {
                window.location.href = "TravellerInfo.aspx";
            }
        });


 return false;

    }

</script>

EDIT 2:

 protected void Page_Load(object sender, EventArgs ea)
        {
            ImageButton testbtn = new ImageButton();
            testbtn.OnClientClick = "return testbook('15000')";
            form1.Controls.Add(testbtn);

        }

Upvotes: 8

Related Questions