forum

Home / DeveloperSection / Forums / Change css in jquery ajax with asp.net

Change css in jquery ajax with asp.net

Anonymous User 1988 02-Sep-2014

I wolud like to get results: 2222 .but i can not get the results now.Output '3333' always. can anyone help me out ?thank you very much!

<head runat="server">
<title></title>
<script src="/Scripts/jquery-1.4.1.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
    $(function () {
        $("#Button1").click(function () {
            checkCard('333');
            var arrlist = $("span[class='error']");
            if(arrlist.length > 0) {
                alert('2222')
            }
            else {
                alert('3333');
            }
        });
    })
    function checkCard(card_no) {
        $.ajax({
            type:"GET",
            url:"CheckCard.ashx?card_no=" + card_no,
            success: function (data) {
                if(data == "true") {                    $("#sw").addClass("error");
                }
                else {                    $("#sw").removeClass("error");
                }
            }
        });
    }
 </script>
</head>
<body>
 <form id="form1" runat="server">
 <div>
    <span id="sw"></span>
</div>
</form>
    <input id="Button1" type="button" value="button" />
</body>

CheckCard.ashx:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.SqlClient;
namespace SwipeCard
{
/// <summary>
/// Summary description for CheckCard
/// </summary>
public class CheckCard : IHttpHandler
{
    public void ProcessRequest(HttpContext context)
    {
        context.Response.ContentType = "text/html";
        context.Response.Write("true");
        context.Response.End();
    }
    public bool IsReusable
    {
        get
        {
            return false;
        }
    }
}
}

I wolud like to get results: 2222 .but i can not get the results now.Output '3333' always. can anyone help me out ?

thank you 


Updated on 03-Sep-2014
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By