0
votes
1answer
10 views

slash are removed from jquery ajax post data

$.ajax({ type: "POST", url: "DataImport.aspx/InsertInitialFile", contentType: "application/json; charset=utf-8", processData: false, ...
0
votes
2answers
22 views

Return to index, with selected value (Jquery, ASP.NET)

In my ASP.NET MVC 4 Project, At my index page, I have a dropdownlist where I want to 'redirect' the selected value back to the same index page. I wrote a basic function but I have no clue how I can ...
0
votes
0answers
28 views

jCarousel load content with ajax

I made a jCarousel on my home page with all the feature products, but if the feature products are 100 in number the home page will load very slowly so I decided I will load the content with ajax, I'm ...
0
votes
0answers
28 views

JSON string requested using AJAX from WCF service missing .d and __type attributes

I am using jQuery AJAX to call a WCF service. The service retuns a JSON string that represents an instance of a custom object. What I'm writing is meant to replace some current functionality in an ...
0
votes
1answer
30 views

Could not find a base address OR maximum string content length quota(8192)?

I am getting The maximum string content length quota (8192) has been exceeded while reading XML data. in ajax POST call. I added bindingConfiguration="UsernameWithTransport" in <endpoint> and ...
0
votes
1answer
15 views

Handlebars syntax issue with JSON from Trello API

Struggling with my Handlebars syntax for JSON data when returned from the Trello.Net wrapper for the Trello API. I'm doing a card search for some string which returns cards. This part works well. ...
0
votes
0answers
35 views

jQuery validation using remote method #ASP.NET (FIXED)

I'm using jQuery validation plugin to validate my client email address if its already exist in the system. This method will call a generic handler page to validate the email address. jQuery ...
0
votes
1answer
27 views

Parsing json Array Ajax Return Data

Can somebody explain me how do i parse this Ajax response in jQuery {"d":{"__type":"ListUsers+returnData","Type":"Success","Message":"User Added successfully."}} I am using same return types for ...
0
votes
1answer
17 views

Asp.net jquery ajax call

I am practicing jquery ajax call. What happens is when i run my project it gives INTERNAL SERVER ERROR 500. What does this error means and how do I encounter this error? I created a sample project in ...
1
vote
3answers
67 views

Jquery Ajax error for asp.net page

I have a very simple page and a [WebMethod] inside it which returns a simple message. I would like to show this message through $.ajax on client side. however my website is using rewrites rules so my ...
0
votes
1answer
35 views

Not able to maintain checkbox during pagination using jQuery

I have 4 buttons for pagination(first,move next,move back and last). I am trying to maintain checkbox during pagination. The problem is that when I select any checkbox and then go to next page and ...
-1
votes
2answers
37 views

Finding a row based on 2nd and 3rd TD values

I have a table of following structure :- <tr class="tbs_tr" style="background-color: #ffffff;" jQuery1368711830388="355"> <TD style="WIDTH: 20px" class=tbs_td><INPUT ...
0
votes
3answers
48 views

Web API - Simple Post model with collection property is not binding

// Server-side Model to bind public class CurrentPipelineRequest { public List<string> Usernames { get; set; } } // Controller [HttpPost] public HttpResponseMessage ...
0
votes
1answer
46 views

to check checkbox based on hidden field values

I have a table with following structure,in which first TD of each row contains a checkbox.I have a hidden field which contains comma separated values of second TD of rows whose check box has to be ...
0
votes
0answers
32 views

cross browser compatiblity with loader

I have problem with Loader with other browsers except IE. The code goes as follows. Below is my Div tag code in Master Page. <div id="pnlPopup" class="PrProgress" style="display: none;"> ...
0
votes
2answers
46 views

Automatically page scrolling down in asp.net

I have a problem while opening asp.net page. on post back my page scrolling to the middle of the page. Page contains one ModalPopupExtender and so many javascripts. I think the page focusing on this ...
1
vote
3answers
81 views

Ajax jquery passing multiple parameters web services

<script type="text/javascript"> $('#btnregister').click(function () { $.ajax({ type: "POST", contentType: "application/json; charset=utf-8", ...
0
votes
1answer
51 views

Return a value from a WebMethod based on conditions provided in the WebMethod

I have a jQuery Ajax WebMethod call as shown below: <script type="text/javascript"> $(document).ready(function () { $("#btnsubmit").click(function () { var arr = new ...
0
votes
1answer
38 views

Ajax call back function called always after first call

I want to do auto load with using ajax call back function but the GetData function is keep being called after first with same parameters. Here is my javascript codes: var currentPage = 0; ...
0
votes
0answers
4 views

Load only the element and its content only

i am editing a webgrid using a modal window. When I click save its suppose to load and highlight section edited. Below is part of my code that after the success of ajax call is executed. ...
0
votes
0answers
39 views

RSA over Jquery Ajax

The company i work for has found a problem working on a new page, in sending new/modified users passwords when the account is saved to server side code from client side using jquery ajax. At the ...
2
votes
3answers
39 views

Passing parameters in ajax call

I'm trying to make an ajax call to the controller method. without parameter it works fine. Once i add the parameter i always receive a null parameter to the cotroller. I think i have correctly done ...
1
vote
4answers
91 views

After post back jquery not working

I have combo box in which I fill data from ajax jquery. It works fine but when I click save button post back occurs after post back it not works. This is my Jquery code. $(document).ready(function ...
4
votes
6answers
70 views

how to get value hidden in C# when it is set by jquery after postback

i am nwe to jquery.how i get value of hidden field after post back in csharp. when ever post back occures value dissapear. this is my hidden field. <asp:HiddenField ID="Hid_BasicSalary" ...
0
votes
2answers
99 views

Change label inner text that contains link using Ajax

I have a label that contains a link like following: <label id="textlabel" > <a href="#" id="testlink">data</a> </label> I am trying to use Ajax to change label text, but ...
0
votes
0answers
21 views

Html append Issue using getJSON

/* this is my html in which iam creating dynamically category buttons and passing categoryid and name to function i have to show product menus on behalf on Category in div "dvsoft". <div ...
0
votes
1answer
44 views

returning complete page HTML instead of string output in JSON response

I am trying to achieve a simplest task through ajax using web method . My web method as follow [WebMethod] public static string GetDate() { return string.Format("says {0}", ...
2
votes
1answer
74 views

WebMethod called through Jquery Ajax is doing 301 redirect

I have a webmethod in aspx page and I am calling it through jquery Ajax method. In one server I am getting windows security prompt on ajax call (all other servers are working fine). When I was ...
1
vote
1answer
40 views

jsonp callback function not getting called

I am doing a cross domain AJAX call with dataType as jsonp. I have set the Jsoncallback querystring parameter in the URL. However, the callback function is not getting called at all and instead the ...
0
votes
1answer
64 views

Consume WCF service from JQuery

I am trying to add a WCF service to my web control class project and allow my jquery client to consume the service. Ideally, I want to host the WCF service in the same project and allow a custom web ...
0
votes
0answers
36 views

web method not find on server while working on local

I am using web method with ajax to call a server side method. Its working fine on my local host, but problem is when i make online that page, jquery ajax goes to error section and throw 404 error . I ...
-1
votes
0answers
18 views

Creation of Captcha Like Mathematical Expression in .html file and validate in on server side using asp.net [closed]

My requirement is to create a mathematical code on a simple html page. Say Demo.html Also I would like to validate the code entered server side using asp.net I know how to create a mathematical ...
0
votes
1answer
49 views

Validation on form action when using preventDefault

I'm making a ajax call to a server side function to send an email. It works fine. My issue is before sending the email i need to validate the captcha where the server side code resides in ...
0
votes
4answers
53 views

Why need e.preventDefault

I'm using below code to send an email. it's not working if i remove the e.preventDefault();. Why do i need to disable the default submit behavior of the form? how can i achieve it without ...
3
votes
2answers
131 views

A circular reference was detected while serializing an object of type 'System.Reflection

I have an asp.net MVC 3 controller action method like this: public JsonResult GetRecordingRates(int Id) { List<DefaultRateChart> defaultRateCharts = new ...
0
votes
1answer
48 views

add new rows in a table using ajax success

I have jquery Ajax function like this: $("#Prices").dialog({ autoOpen: false, autoResize: true, buttons: { "OK": function () { ...
-4
votes
0answers
28 views

Send data from one domain to another domain [closed]

We have a requirement as follow We have web application built on Asp.Net 3.5. There is another Android mobile application written in different domain.So whenever user update information on mobile it ...
0
votes
1answer
36 views

Id of selected item not correct

I have following list. I am using this list as a treeview. <div id='DataTree' > <ul> <li id='home'>Home</li> <li ...
-2
votes
0answers
45 views

Populating checkboxlist on load of modalpopupextender

I have a checkboxlist on ajax modalpopupextender which is inside ajax updatepanel. I want to populate this checkboxlist on load of modalpopupextender. How can I do it. I tried creating a Webmethod ...
-3
votes
0answers
23 views

(Ask) how to create a page administrator steps in e-commerce by using mobile web base [closed]

how to create a page administrator steps in e-commerce by using mobile web base please help all: how to create a page administrator steps in e-commerce by using mobile web base any kind of tools ...
0
votes
0answers
217 views

Can I bind asp.net dropdownlist using javascript/jquery?

Can I bind asp.net dropdownlist using javascript/jquery? I get the data from jquery ajax from a web method so I want to avoid postback at this point. But I still want to do postback and save all the ...
1
vote
1answer
205 views

How to retain an injected partial view after page refresh in asp.net mvc

I am using ASP.NET MVC 4 and jQuery. I have a button control on my view. When it is clicked it "injects" a partial view into my view. When I refresh the page then the partial view is gone. My HTML ...
0
votes
0answers
43 views

Generic JQuery for bind Cascading Drop down

I have a cascading drop down in my all page. Now i want to write generic jquery method which bind any drop down with the help of jquery. I will pass the drop down id and web method name which i want ...
-2
votes
1answer
188 views

How to execute sql server stored procedure by using json?

Iam creating form for point of sale for resturaunt management system in Asp.net,I have two section one is Category like which have buttons like Drinks,Pizza etc and 2nd section is of Item which are ...
0
votes
0answers
30 views

FileUpload using ajax with WCF service

I am wondering if you can help me. I am using Fasny fileupload and I want to add the current file to the server with WCF service(c#). My plan is to call my service with javascript(ajax) and to give ...
0
votes
1answer
44 views

jQuery and reloading server control

I am new to jQuery and have some questions. I have created a server web control (it implements a webControl) and wanted to know how to refresh the control when an event fires. In other words: I ...
0
votes
1answer
31 views

Get data form by ajax in server asp.net

I try to send a form by Ajax to the server side of an another page, save it, and stay in the same page. Ajax code: function SaveJS() { $.ajax({ type: "POST", url: 'http://' + ...
0
votes
0answers
34 views

How to remove this error Uncaught TypeError: Cannot read property 'zIndex' of undefined (repeat 2 times)

i am adding google map in my site .it gives me following error please help me. How to remove this error Uncaught TypeError: Cannot read property 'zIndex' of undefined (repeat 2 times)
-1
votes
0answers
36 views

Error when ScriptManager added to the page

Im using IE 9 and I placed a ScriptManager in a plain page without any code behind and this error came up : Microsoft JScript runtime error: 'ID' is undefined cr_real_detachEvent("onload", ...
0
votes
0answers
123 views

dynamically load a aspx page using jquery which has asp timer. other than iframe

I have a Asp.net Web page PageA.aspx (which is a new Asp.net 4.5 web application,) in this page if i press a button, i want to display contents of SomePage.aspx ( which is a currently running legacy ...

1 2 3 4 5 17