Click here to Skip to main content
15,868,141 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
SQL
Can Any body help on this

From View:
<pre>@Html.ActionLink("Details", "", 
     new { id = item.id },
     new { onclick = "someFunction(" + item.id + ")", 
     href = "javascript:void(0)" }) 


Javascript
function someFunction(id) {

   $.ajax({
    type: 'POST',
    url: '@Url.Content("~/")Contracts/Test/',
    data: { 'id': id },       
    dataType: 'json',
    success: function (data) {
        alert(data.domain_name);
    },
    error: function (xhr, status, exception) {
            alert("Error: " + exception + ", Status: " + status);
        }
});    

}

Controller action
public JsonResult Test(int id)
    {
        var result = (from cntrct in db.contracts where cntrct.id == id 
              select new { cntrct.domain_name, cntrct.id}).ToArray();    
        return Json(result);
    }

Getting error like : 500 Internal server error.
I can pass single property but I can't pass the array or object back to JavaScript.
Posted
Updated 6-May-13 1:41am
v3
Comments
_debasis 7-May-13 2:24am    
I think the Controller action does not return proper json and you are trying to access it as json data.domain_name.
Please check the json format or access it as array.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900