The jsonresult tag has no wiki summary.
0
votes
2answers
50 views
Access object property values
How can I validate if "success" is true or false in the code below? I have tried with the following code but it is not working:
if (result["success"].Equals(false)) throw new ...
0
votes
2answers
48 views
How to use Jquery Ajax to get values from Action in ASP.NET MVC 2?
I have a action return JsonResult type, this is code:
public JsonResult GetStudent()
{
var student1 = new Student
{
ID = 123456,
Name = "John Smith",
...
0
votes
1answer
65 views
Parsing a json formatted string into json and creating a jsonresult type object with c#
I have a quite a complex string representing a json object. I need to convert this in to some form so that I can return it as a JsonResult in my MVC controller.
string result = "[
{
...
0
votes
1answer
44 views
Dbcontext with using-clause in Asp.Net Json-Call
I ran into a problem when switching from the Local Development Server to the Local IIS Server (ASP.NET MVC4) using the following Controller-Method:
public JsonResult GetJsonData(string Context, ...
0
votes
0answers
28 views
How can i change Json response according to Spinner Selected Item?
In my project i want to show student's exam results according to academic years and for this i use listview for results and spinner for academic years;
1. I want to do:
the first, I want to make ...
6
votes
4answers
176 views
Multi-tenant application allow one user to access many tenant accounts?
I'm writing a multi-tenant application using a one database per tenant model. I have allowed each user account to access multiple tenants (as long as that tenant has given them access)
Each page ...
1
vote
0answers
31 views
Action already returned but browser not fetching results
In ASP.NET MVC 4, I have a [HttpGet] action method, that returns a JsonResponse.
public JsonResult List(int domainId)
{
....
}
When I call this method with the browser, by ...
0
votes
1answer
93 views
Return Custom Errors to ajax post error function from JsonResult Method and display it under Validation Summary
I have Action Method of types "JsonResult". I call it using ajax post. I want to return the custom errors from the action method back to ajax post and display those errors as validation Summary.
...
0
votes
0answers
73 views
How to jsonResult on ASP.NET Webforms Like (webapi)
i've a asp.net website (webforms), now i need to add some behavior on client-side, that will use ajax for simple operations.
in asp.net mvc webapi it is very easy to return a specific content class ...
2
votes
4answers
78 views
MVC 4 and JsonResult format
have a problem with the result format of this code
public JsonResult getCategorias(int? id)
{
var res = from c in db.Categorias
where (( id.HasValue && c.CategoriaPadre == id.Value) || ...
1
vote
2answers
64 views
JsonResult not picking up ICollection in object when i post from ajax
I am using MVC 4 and have been struggling with getting Json from the client constructed by Knockout.Js back to my Controller Action. The Json gets posted ok and examining it in Fiddler all seems fine ...
0
votes
1answer
59 views
MVC and model design - one for each json action? one for each view?
I'm on Microsoft MVC4, I'm starting to have a lot of models and i want to reorganize them.
I'm heavily using jQuery Ajax calls to populate data, thus I have:
few actions that returns simple views ...
0
votes
0answers
60 views
MVC Action return this.Json leaving html brackets as-is
I have a JsonResult MVC action using return this.Json but with a lot of html in the return value. Therefore, it's converting all the <'s to something like \u003, and same for closing >'s, etc.
...
0
votes
0answers
75 views
C# .NET / JsonResult and StatusCode
I have an method that authenticate the user and if something“s wrong this return a new Json Object like that
public JsonResult AuthenticateUser(string email, string senha)
{
UserBLL ...
0
votes
1answer
210 views
receiving error response from android with JSON/PHP
I'm coding my android app which shares DB tables with PHP forum in my local server. My app users needs to register before he/she can start using the app and one of the functions in my app is to allow ...
0
votes
0answers
161 views
Ajax call accepts json but controller returns html
So, I have been using $.getJson() successfully to grab data. In this instance, I needed to synchronously grab data from the server, so I used:
$.ajax({
type: "GET",
async: false,
url: ...
1
vote
4answers
343 views
Actionresult vs JSONresult
I have 2 questions:
What is the difference between JSONResult and ActionResult?
When to use JSONResult in MVC?
0
votes
2answers
177 views
How to handle youtube deleted videos using youtube api from json request
I want to get youtube videos from youtube api using json request. Now i get videos from youtube using json. Example the url have some deleted videos ...
0
votes
1answer
173 views
Json structure is returned empty, without property names and values when using Newtonsoft JsonConvert in FB C# client
I'm working on asp.net mvc 4 application which uses Facebook C# SDK (6.0.10.0) and Newtonsoft.Json (4.5.0.0).
Request with FacebookClient returns expando object:
[Authorize]
public ActionResult ...
0
votes
0answers
74 views
return Json(Dictionary<int><int>) -> javascript
i've got a problem returning a Json object.
Here's the code.
public JsonResult getDictionary(List<Int32> input)
{
Dictionary<Int32, Int32> dict = new Dictionary<Int32, ...
1
vote
2answers
298 views
How to show an alert after the file was successfully uploaded in ASP.net MVC 3
For now I am able to upload the file successfully... What I'm trying to do right now is show an alert box if the file was successfully uploaded or show an alert for the error/exception if not...
Here ...
0
votes
2answers
83 views
extra \ in json response before every / in java, android
My code to get image Urls
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
httpPost.setEntity(new UrlEncodedFormEntity(params));
...
6
votes
2answers
153 views
How to read a property of an anonymous type?
I have a method that returns
return new System.Web.Mvc.JsonResult()
{
Data = new
{
Status = "OK",
}
}
I need to write a unit test where I need to verify ...
0
votes
1answer
171 views
How can i return Json Reslut + Web api + validate model + actionfilters +OnActionExecuting method
string message = string.Empty;
public override void OnActionExecuting(HttpActionContext actionContext)
{
var modelState = actionContext.ModelState;
if (!modelState.IsValid)
actionContext.Response ...
0
votes
0answers
256 views
MVC 3 project - The resource cannot be found
I'm having problem with MVC 3 routing. I have this function in the Global.asax:
routes.MapRoute("Invitations",
"api/invitations",
new { controller = ...
1
vote
1answer
221 views
How to return Json result without double quotes?
I use this action in controller:
public JsonResult DoSomething(int id )
{
char result = '0';
....
return this.Json( result, JsonRequestBehavior.AllowGet );
}
Results are in double quotes: ...
1
vote
4answers
370 views
asp.net mvc3, how to get the value returned by JsonResult
here's my action.
public virtual JsonResult AddSearch()
{
var data = new { Id = food.Id, Image = food.Image, Name = food.Name};
return Json(data, ...
2
votes
1answer
3k views
ASP.NET MVC 4 return Json resulting in double json or empty data
I am getting either empty Json results or double json results and I don't know why yet?
base line:
http://learn.knockoutjs.com/mail?folder=Inbox
looks like this in chrome F12: ...
0
votes
1answer
264 views
JQuery Autocomplete won't autocomplete
I am trying to write my very first jQuery autocomplete example. I need to be able to select multiple values from the autocompletion so I used the example provided here.
No matter what I do I can't ...
0
votes
2answers
2k views
Pass JSON Object To MVC Controller as an Argument
I have the following arbitrary JSON object(The field names may be changed).
{
firstname: "Ted",
lastname: "Smith",
age: 34,
married : true
}
-
public JsonResult ...
0
votes
1answer
105 views
jquery StrutsTypeConverter json struts2 does not convert
I have a problem with struts2-json-plugin and StrutsTypeConverter.
I have a result of a DB which contains java.util.Calendar entries.
And I have a public class CalendarTypeConverter extends ...
0
votes
1answer
123 views
linq jsonresult dropdownlist
I'm populating a dropdownlist of years using the following controller. Instead of listing years manually, I want to retrieve a list from the database. I created a linq query and have returned the ...
1
vote
1answer
110 views
Complex Json parsing result format
i am new to ios development..
i have problem in getting arrays from complex json response.
so anyone have idea about it than please help me...
my json response is as below
and i want to get array of ...
1
vote
3answers
4k views
MVC4 razor accessing JsonResult data from my model in client side javascript
I am working on an MVC4 razor project. I have a list of role objects that I store on my model as a jsonResult intended to be used in my client-side javascript.
//Model
public JsonResult JsonRoles { ...
2
votes
1answer
122 views
How do I use 2 include statements in a single MVC EF query?
I am trying to write a query that includes 2 joins.
1 StoryTemplate can have multiple Stories
1 Story can have multiple StoryDrafts
I am starting the query on the StoryDrafts object because that ...
5
votes
2answers
692 views
How can I return json on a partialview in MVC?
I have this following code:
[HttpPost]
public JsonResult Index2(FormCollection fc)
{
var goalcardWithPlannedDate = repository.GetUserGoalCardWithPlannedDate();
return ...
0
votes
0answers
252 views
Need to format JSON from MVC4 Web API where base object is 'data:' and has JsonResult object included
MVC4 web api returns json in this format:
{
"LastLoginTime": "2012-07-14T13:17:36.1268831-07:00",
"UserId": 1,
"Email": "email@email.com",
"FirstName": "John",
...
1
vote
3answers
882 views
calling @Html.Action for JsonResult changes my response type in parent template
I've got the following controller:
public class HelloController
{
public ActionResult Index()
{
return View()
}
public ActionResult Hello()
{
return Json(new{ ...
2
votes
1answer
169 views
JsonResult with numbers as field names
I need to return a JSON result from my ASP.NET MVC 3 application like this:
{ 0: value1, 1: value2 }
But I can't create an object with anonymous type that would have numbers as field names.
So what ...
1
vote
1answer
226 views
Get a bad request when try to use .getJSON to call ASP.Net MVC 3 json method
my client using jQuery 1.7 try to make a request to my server using ASP.Net MVC 3 Json method. I will give a shot of my request like this below:
GET ...
2
votes
2answers
7k views
C# - Get Prettified JSON from MVC 3 JsonResult
Context
Language: C#
Platform Version: Microsoft .Net Framework 4.0
Operating System: Windows 7 Professional (64-bit)
Constraints: Microsoft MVC.Net 3.0
Problem
I find myself looking at JSON a lot in ...
0
votes
1answer
44 views
Encompassing object attributes with HTML and return in JSON
currently, i have written the following json search method.
[HttpPost]
public JsonResult Search(string videoTitle)
{
var auth = new Authentication() { Email = "abc@smu.abc", Password ...
1
vote
2answers
939 views
Return file in JsonResult or return Json data in ActionResult?
Using an MVC3 .net controller on the back-end, I am performing an HttpPost to submit a file via the HttpContext.
When the server reads the file, a list of strings is returned with the upload results.
...
1
vote
2answers
200 views
Sorting not working with Json Result giving encoded output
I am using Json Result to show a table, it is working fine when I show the result. Now I wanted to add a sort feature to it, so I used the canSort:true property. But now whenver I click on the header ...
0
votes
1answer
188 views
How can I prepend “while(1);” to a Json Result?
I've been reading about Preventing the Execution of Unauthorized Script in JSON, and i want to use this practice.
The problem is that i don't know how can i do this.
My json result is like this
...
2
votes
1answer
936 views
HighCharts & MVC: How to load whole graph definition and data with JSON?
I'd like to know how it is possible to load options & data graph or whole graph structure returning a JSON object?
In particular, I'd like to dynamically create options, categories, axis, data, ...
0
votes
1answer
3k views
jQuery AJAX call into MVC controller action never returns
I've looked at the previously-posted jQuery/MVC questions and haven't found a workable answer.
I have the following JavaScript code:
appCode.runReports = function (e) {
var reportList = '';
...
0
votes
1answer
2k views
Passing Json from action to view by ViewBag
I'm trying to get the result below using JsonResult, but I can't
var localJSON = [
{ "id": "1", "label": "tagName1", "value": "tagValue1" },
{ "id": "2", "label": ...
2
votes
2answers
975 views
how to get JSON Results placed on Google Maps?
I have my JSON Results shown below that i have pulled out of my database, Iwant to display this on google maps using a marker which is displayed based on the position here are the results;
{
...
2
votes
1answer
493 views
JSON returned using Json() by jquery $.post()
I can't work out what I'm doing wrong - I'm sure this used to work...:
<script type="text/javascript">
$("#@containerId form").submit(function (event) {
event.preventDefault();
var ...

