JQuery :: JSON Not Working In IE?

Oct 8, 2010

I use a web method with JSON which controls the Username is available or disable. This code is working well with Mozilla. But it doesn't work with IE.

this is my JSON code:

<script src="../jquery-1.4.1.min.js" type="text/javascript"></script>
<script type = "text/javascript">
$(document).ready(function () {
$("#<%=txtUserName.UniqueID%>").change(function () {
var uname = $("#<%=txtUserName.UniqueID%>");

[code]....

View 8 Replies


Similar Messages:

User Availability Using Jquery And Json Not Working On Server In .net?

Jun 19, 2010

I have a textbox on blur function.I'm calling a Jquery function which work call a webmethod on the cs file returning true and false.I am using JSON.This whole functionality is working on local and when i give a alert(result.d).It gives proper result when working on the server i.e 0 or 1.But when i do that on server,it returns undefined.I have used json.

View 1 Replies

JQuery :: How To Save And Retrieve Date In Database Using Jquery Ajex .net ,JSOn,XML,HTML

Oct 13, 2010

how to save and retrive date in database using jquery ajex asp.net ,JSOn,XML

View 2 Replies

JQuery :: Gridview Textbox Template Save Using Jquery Json?

Mar 11, 2011

my requirement is i want grridview textbox template save using jquery json how to do it

View 2 Replies

Javascript - How To Make Json Child Nodes (JSON Inside JSON)

Aug 11, 2010

I try to use the jquery + json to get all elements in form and build a JSON var to post in a ASP.NET MVC method.

[Code]....

It method get all fields in a form and build a JSON, but it dont put JSON inside JSON.

Example:

If i have the follow form:

<input name="person.name"><input name="person.age"><input name="person.address.street">

The serialized string build a JSON like this

{ "person.name": "??", "person.age": "??", "person.address.street": "??" }

I need a plugin or some function to generate like this:

{ "person": { "name" : "??", "age" : "??", "address":{ "street": "??" } } }

View 1 Replies

MVC :: Json And Jquery With Dropdownlist?

Sep 28, 2010

I want to do like below:I have three dropdownlist:

- test
- test1
- test2
and i have two textbox
- txtname
- txtsex

when i click on test dropdown list i want to diplay data in test1 dropdownlist and display in txtname and txtsex too, how can i do by using mvc json and jquery ?

View 2 Replies

MVC :: JSON Model Binding Not Working With AntiForgery?

Nov 17, 2010

As far as I know there is no way to get the ValidateAntiForgeryTokenAttribute to work with a controller action that is using model binding to JSON. I tried adding the __RequestVerificationToken property to the JSON object before posting but it didn't pass the verification.

View 14 Replies

JQuery :: Finding Combination With JSON?

Feb 3, 2011

I was wondering to use JQuery with the light wieghted Json and it was a wonderful experience and a very positive performance boosting or the entire project.

I was hoping that anyone else had the same experience with asp.net project geared up with Jquery and Json?

View 3 Replies

Use Jquery Selectors On Json Result?

Oct 24, 2010

I'm creating an inbox system for my website which allows basic communication between users. I'm fetching the results with jquery calling a webservice. Then I'm using a jquery template engine to render the results to the screen. So far this all works good. but now I want to add some click functions on certain parts of inbox messages. For example I want the title of the message to be clickable so it will expand/collapse the fulltext which is hidden in a div beneath it.

But I can't seem to use the jquery selectors on this dynamic json result. It works when I put the function in the href tag itself but I don't really want to. I also tried adding the function after the success function but no luck either. Is it possible at all to use selectors with a template engine? I hope I made myself clear otherwise feel free to ask more information.

View 3 Replies

Cascading Dropdownlist In Mvc 2 Without Jquery Or Json?

Feb 11, 2011

I am new to ASP.NET MVC 2. In my project, there are two selects: one that contains a list of countries and another that should contain the states/provinces/etc for the country selected in the previous select.

Is there any possibility to create a cascading select without using any client scripting?

View 2 Replies

MVC :: JQuery JSON Array Parameter?

Apr 21, 2010

.I am using VS2010 Ultimate in an out of the box HelloWorld MVC2 ProjectI am using JQuery 1.4.1I have the following code in my View:

function TestStringArray() {
var stringArray = new Array();
stringArray[0] = "item1";

[code]...

Forgetting my controller actually needs to return a Json result (I have a break on the return View() line), the values parameter is null. When I pass in a single string (change the type from List<String> to String in the controller, pass in a single string value from the View), it works fine. Looking at Fiddler, the array is passing the multiple values.I did some research and people are suggesting JSON.Stringify ion the JSON2 library, the JSON.NEt library, etc... Do I really need extra libraries? Microsoft didn't think of this scenario for out of the box? I assume the problem is any kind of complex type.

View 2 Replies

MVC :: Pass JSON Result To JQuery?

Feb 8, 2011

I have the following actionresult in my controller;

[Code]....

and this jquery script to print values pass from controller in textboxes.

[Code]....

View 8 Replies

JQuery :: Ajax Invalid Json

Dec 29, 2010

client code:

<script src="../Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
<script type="text/javascript" language="javascript">
$("#send").click(function () {
$.ajax({
url: "../JqueryAjax/JqueryAjaxServer.aspx",
type: 'get',
contentType: "application/json; charset=utf-8",
dataType: "json",
timeout: 30000,
data: "{}",
success: function (data, textStatus) {
alert("success");
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert("error");
alert(textStatus);
alert(errorThrown.toString());
}
});
});
</script>

server code:

Response.ContentType ="application/json";
string json = "{"username":"test"}";// ,"content":"test"
Response.Write(json);

when i click the post request button the result is shown like this Invalid Json,the browser alert this.

View 9 Replies

JQuery :: Calling Web Service Using JSON?

Jan 6, 2011

I just want that when i enter name in Textbox1 it shown in TextBox2 when i click on Button

I am using HTML page here's the code

<input id="txtID" type="text" /><br />
<input id="txtName" type="text" /><br />
<input id="btnShow" type="button" value="Show" />

[Code]....

But when i load this Web Page its show this error after click on button

Error: 12031 unknown
Error: 500 Internet Server Explorer

View 18 Replies

Passing JSON From JQuery To ASHX?

Jun 1, 2010

I'm trying to pass JSON from jQuery to a .ASHX file. Example of the jQuery below:

$.ajax({
type: "POST",
url: "/test.ashx",
data: "{'file':'dave', 'type':'ward'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
});

How do I retrieve the JSON data in my .ASHX file? I have the method:

public void ProcessRequest(HttpContext context)

but I can't find the JSON values in the request.

View 5 Replies

JQuery :: Call C# Function Using Json?

Feb 9, 2011

I have a dropdown box on my aspx page, I would want o pupulate it using jquery's json of calling a method. I do not want to call a webservice method. I have a class, in C# and want to call a method from the class.

View 6 Replies

C# - Save State Of Widgets In MVC Using JQuery And Json

Sep 1, 2010

I am using ASP.NET MVC in C#

I have a page where the user can move different Widgets around the page, and I now need a method to save the state of the widgets. I am using jQuery in the HTML page, and the jQuery posts the new page layout using JSON. I am unsure how to read the JSON in the controller.

The code I'm using is based on this example here - [URL], but the code for saving the result is in PHP.

[Code]....

I am willing to consider alternative ways to do this, as I may not have chosen the best way to do this.

View 1 Replies

Jquery - Get Json Data In Controller Action?

Feb 9, 2011

I have asp.net mvc application. i want to configure the object in jquery and want to pass it to the the action of controller . where as in my script i am using this for configure data for the ajax call:

[Code]....

it does not calls to action in controller. i think here :

var json = $.toJSON(peform);

is not working as expect. is it need to add any js file to reference ? or mistake in syntax?

View 1 Replies

Jquery - How To Convert An Object List Into JSON

Mar 20, 2010

I have a list of person objects which I want to send in response to a jquery' ajax request. I want to send the list into JSON format. The list is as follows -

List<Person> PersonList = new List<Person>();
Person Atiq = new Person("Atiq Hasan Mollah", 23, "Whassap Homie");
Person Sajib = new Person("Sajib Mamud", 24, "Chol kheye ashi");
PersonList.Add(Atiq);
PersonList.Add(Sajib);

How can I convert the "PersonList" list into JSON ?

View 1 Replies

JQuery :: Get Field Value From Json Object Using An Index?

Feb 17, 2011

I would like to get a field value using an index on an json object.

The json object looks like : {PartList:[{Field1:"echo",Field2:"bravo"},{Field1:"yes",Field2:"no"}]}

I know that if I would like to have the Field1 value it is on the index 0, and for example for the first item in the array:

jsonObject.PartList[0][0] , here the first index is working but the second index given is not. But is it possible to do this ?

View 4 Replies

Reference JSON Columns By Index In JQuery?

Feb 15, 2011

I am looping through a JSON table using jquerys foreach operator. I am having to reference the the columns by name e.g:

$.each(items, function (index, item) {
if (item.CustomerFname == "Bob") {
alert(item.CustomerFname + " " item.CustomerSname)
}

Whereas I would like to be able to say something like:

[code]....

Ultimately I'm trying to make this function dynamic with respects to the json list I pass in which will of course mean that the column names will change. However I would like to perform the same operations on the columns...

View 2 Replies

Jquery - Retrieve JSON Via Context.Request?

Aug 3, 2010

var OrderInfo = {
"ProductID": "ProductIDValue",
"ProductName": "ProductName",
"Quantity": 1,
"Amount": 9999,
"SLQuantity": 9999,
"SLDate": "08/03/2010"
};
var DTO = { 'OrderInfo': OrderInfo };
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "JasonHandler.ashx",
data: JSON.stringify(DTO),
dataType: "json"
});

I'm trying to retrieve posted JSON data on server side in an ASHX file via this code string strrequest = context.Request["OrderInfo"]; but it always return null. What Am I doing wrong?

View 4 Replies

Jquery - JSON From .NEt WCF To JavaScript Array Of Arrays?

Mar 8, 2011

I'm using jqPlot and I need to turn this JSON which I receive from a WCF service:

[{ "x": 2, "y": 3 }, { "x": 25, "y": 34 }]

into this array or arrays:

[[2,3],[25,34]]

View 2 Replies

Accessing JSON Data From Page Using JQuery

Nov 19, 2010

I am trying to load the JSON data that I am getting from an aspx page into a drop down list that I have on another page but I am getting the following javascript error.

Microsoft JScript runtime error: 'SiteID' is null or not an object

The SiteID is not returning null though and I believe that is an object. The following is the code I am using to try and load the data into the drop down list:

$.getJSON('Test.aspx?DepotID=' + DepotID, function (sites) {

View 17 Replies

Capture Data From From Using Jquery / Ajax / Json?

Apr 10, 2010

i have few textbox on the form and when the user submit i want to capture the data and insert into db

here is what my code looks like

beforeSubmit: function(data)
{ // called just before the form is submitted
var item = $("[id$='item']");
var category = $("[id$='category']");
var record = $("[id$='record']");

[Code].....

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved