Tagged Questions
0
votes
2answers
36 views
MVC4 cannot map object properties to JSON from AJAX POST
Model:
public class JsonRequest
{
public string Data { get; set; }
}
Action:
[HttpPost]
public ActionResult Index(JsonRequest data)
{
return new JsonResult()
{
...
0
votes
2answers
74 views
MVC 4 Controller JsonResult
I have a question related to my controller in MVC.
I want to loop inside my JsonResult GetAfmeldingen using foreach.
But what I do will not go inside my foreach
here is my code as it looks right now
...
0
votes
0answers
29 views
Json date formatting issues
I am having issue with json date value returned.
When i run code on my local system it work fine but when i run on production with same db connected the result is 12 hr difference that is AM become ...
1
vote
0answers
28 views
Can't send the target ID from a view to the controller “ondrop” event
I am using c# MVC 4 , i am trying to drop an text into an img class and send the img ID to the controller :
function drag(target, e) {
e.dataTransfer.setData('Text', target.id);
}
...
1
vote
2answers
48 views
MVC 3 sending class JSON
My parameter KontrolkaSamTekstLista get null data to controller ActionResult KontrolkaSubmit() but all send action to ajax looks okay.
Class
using System.Collections.Generic;
namespace ...
1
vote
1answer
31 views
C#: Json validation from user input
I need to validate a json file from server side, Im using asp.net mvc with c#, so I have this method in my controller
public ActionResult Validate(HttpPostedFileBase jsonFile)
{
bool ...
0
votes
2answers
39 views
Error when returning entity as JSON
I am trying to return an entity as JSON and I keep on getting this error:
The ObjectContext instance has been disposed and can no longer be used for operations that require a connection.
Here is my ...
0
votes
1answer
50 views
Get json object created in mvc (jsonResult) in android
I created a json result in mvc and I'm building an Android app to get the json result. This is what my json result looks like
{"name":"Mr. Spock","gender":"Male"}
This is my controller
public ...
0
votes
0answers
45 views
X Editable Select values loaded from MVC controller
I am having issue in loading the select options from server using x editable plugin for in place edit.Data in select option is shown as [object object] instead of actual options. Here is my code:
...
1
vote
1answer
34 views
Use Action method selector to differentiate between Ajax and non-ajax request instead of relying on if(Request.isAjaxRequest)?
I'm following a book called 'Asp.Net MVC4 in Action'. And now at certain point they say, Instead of relying on if statement within our code to check if the request is Ajax or not, we could use an ...
0
votes
2answers
47 views
Pass json data to URL?
current script:
var IrregularChartParams = InitializeChartParams();
// parametreleri json stringe cevir...
var chartParams = JSON.stringify(IrregularChartParams);
$.ajax({
url: ...
0
votes
2answers
36 views
0
votes
1answer
33 views
How to POST some properties using an AJAX array?
I want to POST my array data through AJAX posting method.
For getting those values in an array, I have used a ViewModel.
My controller code is as::
[HttpPost]
public ActionResult ...
0
votes
0answers
70 views
ASP.NET MVC 4 routing corrupting a decimal json value
I have a method in a controller:
[HttpPost]
public virtual JsonResult Add(AddItemModel request)
This receives an AJAX call. The JSON request sends a serialized version of the ...
0
votes
2answers
45 views
consuming json wcf service from view in mvc
I am trying to store all information of my "user" table in wcf. and return it in json format.When i am invoking the service,i can see the entities.
But my question is how to call this service ...
0
votes
0answers
31 views
Passing Strongly typed Model containing Json property to View and jquery
I using MVC2 & framework 3.5, from the controller I am sending a model that contains strongly typed object property and also JSON property. In the View I am rendering the strongly typed object but ...
-4
votes
1answer
66 views
How do I make an MVC application communicate with an android app? [closed]
I have an mvc app with users and a db. I'm now creating an android app to get data from the mvc app with json. How do I let them both communicate? For example: when I enter username & password in ...
0
votes
1answer
39 views
Upload single file multiple times with Knockout
I am trying to work out a way to upload a single file multiple times using Knockout and ASP.NET MVC without HTML5
The situation is the user will be able to upload a receipt file (most likely a pdf) ...
0
votes
1answer
43 views
C# How To return List<> As Json
I am having problem with Json and Lists
I am trying to return a list of Chat Entity class but when i try to return it the compiler whines.
I also tried to return IEnumerable<> but the same error ...
0
votes
4answers
37 views
Determine if single value or sub array JSON
I have an algorithm which binds an object from MVC (C#) to the view. The key and the data can be anything, this is up to the implementer.
The issue that I am having is that I cannot determine if ...
2
votes
2answers
84 views
JQuery getJSON in MVC
I have the following JSon call that I want to call a method in Controller & accepts JSon object to update Partial View:
<script type="text/javascript">
function DoAjaxUpdate(btnClicked) ...
0
votes
1answer
70 views
Deserialize Json likes from friends of facebook asp.net mvc
i need to deserialize a json string from facebook that i get from the graph:
{
"id": "1741240583",
"music": {
"data": [
{
"name": "KMN | Kill My Name",
"id": ...
0
votes
1answer
51 views
Single backslash in JSON serialized
I need to send string in format using MVC Json serialization
"America\/New_York"
But when I create string
string timezone = @"America\/New_York";
return JSON(new { timezone = timezone })
In ...
0
votes
1answer
33 views
System.Net.Http.HttpClient adds @ at the end of JSON keys. Why?
I have a pretty simple problem I am not able to solve.
I have an Action method defined like this:
[HttpPut]
public ActionResult Register(ClientRegistrationInformation clientInformation)
...
0
votes
2answers
53 views
asp mvc ajax call - json parameter received as null
I call a mvc controller using ajax using :
var ajaxOptions = { url: url, type: 'POST', contentType: 'application/json',
data: JSON.stringify(data) };
I send the following ...
0
votes
3answers
86 views
json Array posting to mvc controller
I want to post JSON array to MVC controller through AJAX POST as:
$.ajax({
type: 'POST',
data: json.stringify(totaldata),
...
0
votes
0answers
51 views
Getting model from PartialViewResult MVC (Custom filter)
I have a custom filter to perform auditing on my system. I have no issue pulling data out of ViewResult objects but PartialViewResult objects are another story.
Here is my code so far, of the ...
1
vote
1answer
43 views
Accessing MVC's model property from javscript
I have the following model which is wrapped in my view model
public class FloorPlanSettingsModel
{
public int Id { get; set; }
public int? MainFloorPlanId { get; set; }
public string ...
0
votes
3answers
40 views
JSON is an object of strings - but I need the last member of the JSON to be a byte array
I've got a web service that "listens" for an HTTP POST request that sends JSON data- here's the start of the method that does this:
// POST api/GeoPic
[HttpPost]
public HttpResponseMessage ...
2
votes
1answer
64 views
List<> failing to serialize to JSON
I am using the following C# class in my ASP.NET MVC project:
public class ZoneModel {
public int Id { get; set; }
public int Number { get; set; }
public string Name { get; set; }
...
2
votes
1answer
91 views
Entity frame work: many to many relationship tables
I have a news entity and I get the news based on their NewsID. Now I defined a new entity , a Group and I want to get the news based on their Group ID. I defined a Group news Table Aslo to relate this ...
1
vote
1answer
77 views
Rendering an html string to view
I have two controller actions that target the same view. That is, I have specified a view name on the call to View from controller action. The second action puts an html string in a ViewBag. I ...
0
votes
1answer
33 views
how to pass data from View to as an object Controller using ajax?
I have a search ajax request like this:
$.ajax({
type: 'POST',
data: { FirstName: firstname, LastName: lastname},
contentType: "application/json; charset=utf-8",
...
0
votes
1answer
64 views
Want to Save Posted Json data to database
I am posting JSON data through AJAX POST as ::
var length = $('.organizer-media').length;
var contents = $('.organizer-media');
var Title;
type == ...
1
vote
1answer
87 views
How to Convert/Get Form Data to JSON Object
I am getting the Form data in json string Format but unable to bind it
with Model Object
My View:
<div class="GenderaMale float_lt">
</div>
...
0
votes
2answers
56 views
Why is this throwing an internal server error [duplicate]
I have this in my controller;
public JsonResult Json_GetStoreList()
{
StoresData stores = new StoresData();
return Json(stores.All());
}
Then in my partial view I have ...
1
vote
3answers
41 views
Returning JSON from action method
I have this action methid. It will return some JSON.
public JsonResult Get()
{
...
return new JsonResult { Data = data }, JsonRequestBehavior = JsonRequestBehavior.AllowGet };
}
...
1
vote
1answer
50 views
mouse position ajax - asp.net MVC
I am using the following to send mouse down position to two actions in my controller, the first make an image on the fly, the second send the image to the viewer:
...
0
votes
1answer
80 views
Create Image based on JSON output
I need help to create set of images via JSON in ASP .NET MVC4.
Is it possible to do?
My working code is following and I have no idea how to integrate that functionality.
Thank you for any help!
...
0
votes
4answers
131 views
JSON Object to properties
I want to store the results from JSON in properties, but I don't know how. I'm using ASP.NET with MVC 4/Razor.
My model's constructor is:
public UserModel()
{
WebClient request = new ...
0
votes
1answer
98 views
Posting JSON to WebAPI - the JSON object includes an image (bytes) - Getting error: An expression is too long or complex to compile
I'll start off saying I'm not very familiar with JSON.
I'm creating a web service that will accept JSON data from an iOS device, and takes that data and inserts it into a database.
The trouble I'm ...
0
votes
1answer
68 views
What am i doing wrong with this Angularjs ng-repeat?
I have now tried this for a few hours what should be so easy but i do not understand why i dont get this working.
The dummy list is just for testing that it should work and it does. However not when ...
1
vote
0answers
44 views
Controller Method in MVC not called
I got quite a simple JS-Method:
<script language="javascript">
function AmountChanged(callingTextbox) {
var enteredQuantity = callingTextbox.value;
...
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
0answers
50 views
MVC Model binding JSON
I have a JS file that creates a JSON string that I stringify and post with AJAX call to the server, using Fiddler I can see the JSON is formatted correctly and my Action is called as it stops at the ...
0
votes
1answer
86 views
Posting JSON data to Web API - where do I even start?
I have zero experience with Web API and JSON. My requirements are to create a service (I'm using Web API for this) that will accept MIME Encoded JSON data. The service will take that data, insert it ...
0
votes
1answer
91 views
Invalid JSON Parser Error
I have an object with the property contains quote('), slash (/) or Environmental.NewLine
I constructed this object as JSON string and try to assign it to a jQGrid.
But it shows Invalid JSON Parser ...
2
votes
1answer
47 views
Ajax - mvc request always fails
I would like to hit an action in a controller from a view, have it return a result. However I always get a "request failed", then the action code in the controller executes. I am trying to use this ...
0
votes
2answers
92 views
How to return Json as part of my view in C# MVC
My question is: How can I combine the two of these action results into one? There really seems no point in having the first one only to do one line. But I cant see a way out. Any ideas would be ...
0
votes
1answer
41 views
MVC Controller not parsing Ajax Reqest Correctly?
I have an MVC .NET 4.5 application using an Ajax request with JSON to hit the MVC controller on server side. The function in the controller looks like this:
[HttpPost]
public void SomeFunction(int ...




