A set of extensions to ASP.NET developed by Microsoft for implementing Ajax functionality.

learn more… | top users | synonyms

1
vote
0answers
11 views

Sys.WebForms.PageRequestManager.getInstance() not working in IE 10

I am facing some asp.net ajax problem in my application on IE 10. But it is running correctly in compatibility mode of IE 10. on my page i am registering this event in update panel :- var prm = ...
0
votes
1answer
30 views

Pass argument to Javascript metod from Ajax ActionLink MVC3.0

I have a problem sending parameter (Id) to javascript function. Let me tell you about the underlying idea: I have a Training model and every training model has 1 Survey. What i do in below code is to ...
0
votes
0answers
15 views

AsyncFileUpload with session not working

I am working on a web app where a user can log in and upload files to his space. For this I have a AsyncFileUpload control on a page. The markup of the page is something like this: ...
0
votes
0answers
16 views

Hierarchical GridView in ASP.NET with AJAX, JQuery implementation with child detail refresh

I found this article here with a pretty good base for what I need to do with master detail with an update in the detail grid using ajax. The only problem I am having is that the child grid is not ...
0
votes
0answers
20 views

Ajax.BeginForm onSuccess refreshes Partial View causing events to unbind - anyway to avoid this?

When submitting a form using the Ajax.BeginForm() helper in a partial view on MVC4 - onSuccess the partial view reloads and and causes all of my events to be unbinded within this partial view. In the ...
2
votes
1answer
28 views

Application does not shows javascript message when UPDATE PANEL is used

I am making ASP.NET application (C#). [Visual Studio 2010] In that when i try to use client side message using javascript, it shows me message when update panel is not used. But as soon as i added ...
0
votes
1answer
26 views

unable to insert image by binary using ajaxfileupload

I trying to use ajaxfileupload to upload image (using binary) to my database (sql server 2008). I not sure if I did the behind code correctly. When i try to send report without or with uploading any ...
0
votes
1answer
11 views

Show alert after action in mvc3/4

I need to inform user about success/failure of clicked operation. In view I've prepared action link that goes to controller, performs database operation and returns with result. Then I'd like to show ...
0
votes
1answer
33 views

When model is not valid, return to partial view inside a view, with error message

In my asp.net MVC 4 project, I like to safe something from a partial view, which is when a user clicks for "more details". Saving the data is no problem, closing the partial view is no problem, open ...
0
votes
1answer
36 views

MVC4 Ajax request and loss of browser state

I have a MVC4 application. A served page have multiple items with typical "Add to favorites" link to it. Something like -> [page 1] ...[item1][Add to favorites] ...[item2][Add to favorites] "Add to ...
0
votes
1answer
62 views

Unable to get property 'value' of undefined or null reference

I have registration form and button. OnClick - I call function on server side which make a validation of user's zip code at Database with Zipcodes. If validation passed successfully - user's data ...
0
votes
0answers
27 views

execute javascript after asp.net partial postback

User control 1: (list view of item) include UC2 for the pagination UC2.abc += new EventHandler( xxx ); User control 2: (pagination) Eventhandler abc function LB_onclick( object sender, EventArgs ...
1
vote
1answer
29 views

Ajax form reloading/returning new page instead of updating

I'm trying my hand and Asp.net MVC 4 and having an issue with an Ajax form returning a whole new page instead of just updating a div. Here's the razor html code: <div class="All"> <div ...
0
votes
1answer
58 views

jsdebug Web Service method name is not valid

I recently migrated multiple websites in our development area from an x86 Windows 2003 (IIS6) to x64 Windows 2008 R2 (IIS7). I used "msdeploy" to do the migration. Originally I migrated the entire ...
0
votes
0answers
20 views

HtmlEditorExtender asp.net

I wanted to use editor to convert the plain text from the textarea to html so I used markdownsharp on the server and pagedown for preview on the client. I have not used the Htmleditorextender of ...
1
vote
0answers
14 views

Why are exceptions in partial postback (UpdatePanel) not logged to eventlog

In a standard postback, if an exception occurs, the error is logged to the event log under the source "ASP.NET 4.0.30319.0". Lots of good details here. If an exception occurs during a partial ...
0
votes
1answer
58 views

UpdatePanel working only on Chrome and not in IE / Mozilla. Why?

On Clicking the LinkButton, I refresh the image in image control without refreshing the page. For this I have used the UpdatePanel and AsyncPostBackTrigger. It is working perfectly in chrome. But not ...
-1
votes
0answers
19 views

Fakepath issue in chrome in asp.net application. Even javascript is not working

I tried this way. <script type="text/javascript"> function OnClientFileSelected(sender, args) { var row = args.get_row(); var fakeFileNameInput = sender._getChildFileNameInputField(row); var ...
0
votes
1answer
20 views

Sent xml string to controller with ajax in ASP.NET MVC 3

I need to sent xml string to my controller (ASP.NEt mVC 3) method on controller is like this [HttpPost, ValidateInput(false)] public ActionResult SetTherapyTemp(string xmlModel) { ...
1
vote
2answers
40 views

How to return status information during lengthy batch process in MVC 4 action?

In my MVC 4 app, I have a view that uploads a file from the client machine with: <snip> @using (Html.BeginForm("Batch", "Home", FormMethod.Post, new { enctype = "multipart/form-data" })) { ...
0
votes
1answer
43 views

calling web method on window onbeforeunload event

I am working on basic ASP.net website and i want to execute server side function when user try to go away from page. For this i am using onbeforeunload event of window. I have check box on my page and ...
0
votes
0answers
42 views

Asp.net Ajax tab container not working in IE8

I am using AjaxControlToolkit version 4.1.51116. I used Tabcontainer from this. It is working fine with IE9, firefox, mozilla etc. But when checked in IE8, it gives me error as below in everytime when ...
0
votes
0answers
23 views

Ajax.BeginForm refreshing the whole page in MVC

I've been trying to add some Ajax functionality to my mvc site, however, I run into a problem regarding page refreshing. I've created an rss view on my homepage sidebar, which allows the user to ...
2
votes
2answers
78 views

ASP.NET text box loses text on partial postback

I have a user control, In user control I have a button, which when is clicked, shows a message box , message box has a textbox and another button, when I click on another button, I need to get ...
0
votes
0answers
34 views

Progress bar while uploading file

I am using asp.net mvc. I have to upload file, which i have done successfully. Now i want to add progress bar, which shows the status of uploading. My form looks like this @using ...
0
votes
1answer
38 views

Where is the documentation for MSAjax and WebFormsJS in .NET 4.5?

I have been Googling this for a bit now and I can't seem to find what I am looking for. I created a new web application in VS2012 using .NET 4.5. It created a ton of files. Most I understand and have ...
0
votes
0answers
19 views

Pagedown code has some trouble

The EndRequestHandler throws the error Uncaught TypeError: Cannot read property 'attachEvent' of null I am not sure whether the asp.net ajax is causing the trouble or the pagedown code is have some ...
0
votes
1answer
44 views

ajax dropdown extender at runtime

I've got a textbox with an ajax dropdown extender. How do I make it look like image 2 at runtime and not only when hovering over the textbox. The textbox with the "downbutton" should look like image ...
-1
votes
0answers
36 views

How to improve performance of asp.net Website,back end is Mysql server

How to improve performance of asp.net website ,we are using stored procedure for getting the data form database,Mainly we are using the "Data set" to stored the getting data ,it is best? any other ...
0
votes
1answer
113 views

UpdatePanel with GridView and Progressbar not working

I need help. I have a progress bar that triggered after clicking a button. This button runs stored procedure in SQL that will update tables that i later bind for the gridview, after running the stored ...
1
vote
1answer
22 views

Show RadListBoxItem Without Template

I have the following Telerik RadListBox, with a template. <tel:RadListBox ID="ToList" runat="server" DataValueField="Key" EmptyMessage="No Items" style="width:300px;"> <ItemTemplate> ...
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
18 views

Resetting rating provided while using asp.net ajax rating control

I have used ASP.NET Ajax Rating control in my webpage and so far everything is fine.I have one issue with it though.Currently the user is able to click on any star(1-5) to specify their rating.However ...
0
votes
0answers
28 views

Couldn't see my Popup window

I given my coding for a modal popup using AJAX. The problem is when I click the button, the popup is not displaying instead, it is just blinking once. Look at my code and tell me what is the problem ...
0
votes
0answers
31 views

Textbox with HtmlEditorExtender value

I have a textbox with HtmlEditorExtender and it just works fine on displaying its text behind the code. However, when saving the modifications it does not get the value entered in the editor. I've ...
-3
votes
0answers
22 views

Listview.itemcommand will be fired for img tag? [closed]

Hi everyone i am working on listview. I get some data from database and show it in the listview and i have one additionally column which is used to delete record from the listview. I am using a image ...
-2
votes
0answers
34 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 ...
0
votes
1answer
55 views

ASP.NET UpdateProgress not disappearing after redirect to another page

I have page with UpdataPanel and UpdateProgress on it. in this page I redirect to a download page that is responsible for downloading a generated file. Redirecting to download page occurs in ...
0
votes
1answer
59 views

ModalPopupExtender and RequiredFieldValidator on Panel

i'm new on asp.net with C#, i need to update a row in a Gridview, but i have to use a ModalPopupExtender from AJAX and some fields of my table, have to be obligatory, so, i start to use this control ...
0
votes
0answers
67 views

MaskedEditExtender and TextboxwatermarkExtender asp.net ajax

I'm using the MaskedEditExtender and TextboxwatermarkExtender for Date format. My Date Format is Only Month and Year <abd:MaskedEditExtender ID="creg" runat="server" TargetControlID="tderbox" ...
1
vote
0answers
57 views

Another TinyMCE and Asp.Net UpdatePanel error (Permission denied)

I have a problem with tinymce and an UpdatePanel, I'm posting this because non of the other solutions have worked for me. this is my code: function pageLoad() { console.log("pageLoad ...
0
votes
0answers
26 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
0answers
66 views

Webresource.axd and Scriptresource.axd keep loading?

In my asp.net web application, I use Asp.net Ajax (asyncfileupload) to handle user upload process. When upload complete, the page will refresh as follow: function uploadComplete(sender, e) { //do ...
0
votes
0answers
44 views

asp.net SQL syntax error with update and insert command

Hi I have a problem trying to update and insert a new record into a table i'm using this update and insert command. <asp:SqlDataSource ID="SqlDataSource1" runat="server" ...
0
votes
2answers
43 views

Return raw objects from Action methods and convert them to JsonResult before rendering

The website that I'm working on is heavily depending on ajax/json and knockout.js. I would like to have a lot of my Controllers return view-tailored 'json objects', without wrapping them in a ...
0
votes
1answer
48 views

jQuery dynamically node creation with Ajax

Here I am dynamically creating a jQuery 'accordion' list and assigning 'id' to each 'p' part within the accordion( see lines starting with "$.get("/DataPage.aspx",......." below). The problem is I ...
1
vote
1answer
97 views

AJAX POST to MVC Controller showing 302 error

I want to do AJAX POST in my MVC View. I've written the following: Script Code in View $('#media-search').click(function () { var data = { key: $('#search-query').val() }; $.ajax({ ...
0
votes
0answers
111 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 ...
0
votes
1answer
53 views

How to send javascript variables to code behind

I want to send my id value to code behind to fill a listbox. Here I call my id value: function dialogOpen(id) { $('#dialog-form').dialog('open'); } And here I use this id value normally: ...
0
votes
1answer
74 views

Update Panel timer control and JQuery

We have our controls in Update Panel like HTML div, tabel , grid and we have AsyncPostBackTrigger with Event Tick of timer control this time control will update the update panel control on certain ...

1 2 3 4 5 64