I know we already have many posts about this topic, but I just cannot figure out how to pass the data to WebMethod! All I need is to pass one string data to my WebMethod, but do I need to use list data type?

.js

function buttonClicked () {
$.ajax({
    type: "POST",
    dataType: "json",
    contentType: "application/json",
    url: "Chat.aspx/send",
    data: "{'text':'" + $("#writeBox").val() +  "'}",
    success: function () {
    },
    error: function () {
    }
});
}

.aspx (updated with full codes)// I commented out the part that incurs error

[System.Web.Services.WebMethod]
void send (string text) {
    string id = HttpContext.Current.Request.Cookies["id"].ToString();
    string queryString = "INSERT INTO Log (ID, Text, Date) Values (" + id + ", " + text + ", GETDATE())";
    System.Data.SqlClient.SqlConnection con = new System.Data.SqlClient.SqlConnection("Data Source=.\\SQLExpress;Initial Catalog=ChatV1;Integrated Security=True");
    System.Data.SqlClient.SqlCommand cmd = new System.Data.SqlClient.SqlCommand(queryString, con);
    using (con)
    {
       con.Open();
       //cmd.ExecuteNonQuery();
    }
}
link|improve this question

what error do you get? – 3nigma Jan 7 at 8:46
you do right , what is your problem ?! – Ali Foroughi Jan 7 at 8:49
I get 500 internet server error on chrome javascript console. – Si Young Kim Jan 7 at 8:49
feedback

1 Answer

up vote 0 down vote accepted
[System.Web.Services.WebMethod]
public static void send (string text) {
    string id = HttpContext.Current.Request.Cookies["id"].ToString();
    string queryString = "INSERT INTO Log (ID, Text, Date) Values (" + id + ", " + text + ", GETDATE())";
    System.Data.SqlClient.SqlConnection con = new System.Data.SqlClient.SqlConnection("Data Source=.\\SQLExpress;Initial Catalog=ChatV1;Integrated Security=True");
    System.Data.SqlClient.SqlCommand cmd = new System.Data.SqlClient.SqlCommand(queryString, con);        
       con.Open();
       cmd.ExecuteNonQuery();
       con.Close();
}
link|improve this answer
I cannot use static method because I need to use Request.Cookies collection to retrieve my cookie. I found out that I cannot use the collection with static method:( – Si Young Kim Jan 7 at 8:52
So change you strategy for calling an ajax request. Use the PHP style for calling an ajax request(I mean use an other web page and call it by your ajax request,not a web method) – Ali Foroughi Jan 7 at 8:55
2  
@SiYoungKim Did you try HttpContext.Current.Request.Cookies to access cookies collection in static method? – Pavan Jan 7 at 8:55
@JQone Thanks. That works! – Si Young Kim Jan 7 at 9:01
@AliForoughi Thanks to JQone, I could put it static and now it seems to work! except when I include cmd.ExecuteNonQuery in my webmethod. – Si Young Kim Jan 7 at 9:01
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.