Tagged Questions
-1
votes
0answers
27 views
How to get target url for ajax request while binding click event using jquery
My requirement is,
I want to track user navigation.
I will bind the click event for document and get url's, but for ajax request i'm not able to get the target-url.
How to bind ajax click requests ...
1
vote
2answers
187 views
Why my Ajax posting script not working?
I have barely created a script (as I'm just a beginner in ajax), in fact I have copied some part (ajax script) of it from somewhere. But when I click on the the link (vote up / vote down) nothing ...
2
votes
1answer
125 views
What happens during an Ajax call?
can you guys tell me whats happing behind the browser in ajax...
i just know without refreshing a page all the data are loaded....
here is my code
<script>
function loadXMLDoc()
{
var xmlhttp;
...
0
votes
1answer
327 views
how to download ajax control tool kit source?
I have searched hours for the source version of the ajaxcontroltoolkit but could not find it. I get only the binaries version. I am studying the library so want to peek into the source code. please ...
1
vote
1answer
176 views
Need suggestions for ASP.NET application
I would like to use more client-side scripts on my aspx page. I'm not an expert in this area and I'm a bit overwhelmed at the options. First, let me spell out what the page is displaying and then what ...
1
vote
0answers
107 views
What is the difference between ASP.NET MVC AJAX and AJAX TOOLKIT [closed]
I'm pretty lost about it. With ASP.NET MVC app you can use :
<script src="../../Scripts/MicrosoftMvcAjax.js" type="text/javascript"></script>
and then you can type:
<%= ...
-1
votes
2answers
486 views
ajax basics for beginners [closed]
$.ajax({
type: "GET",
data: "id="+id+"&id-other="+id-other,
url: "ajax1.php"
}).done(function(data){
$("#div").html(data);
});
I have the code piece above, I search the web but I ...
0
votes
1answer
550 views
AJAX Control with Drag and Drop Cells
I am looking for an ASP.net AJAX control (Grid or Table) that can drag and drop its cells and order them in a column and row row I want. It is a requirement for my Final Year project and I am ...
0
votes
3answers
819 views
asp.net page not posting back, while the button click event is still firing
Okay, so I have this page, which has one Ajax:AsyncFileUploader also some other ajax stuff like ModelPopUpExtender etc. The problem is the two buttons in the page, of Cancel and Submit, both of them ...
0
votes
0answers
789 views
ASP.NET Ajax client-side framework failed to load and Sys is undefined in Internet Explorer 9
ok this might sound like very old problem, but it is not
i have my website working perfectly for abt 3 months, then suddenly this javascript error was coming
in my website only when i click a ajax ...
2
votes
2answers
511 views
ModalPopupExtender with thumbnail and full size image
let me rewrite my question, I have a Ajax Accordion in my web site, Users can add images, in Accordion,I keep the thumbnail and fullsize image's path in Sql Server table, Users can see the thumbnail, ...
0
votes
2answers
659 views
asp.net ajax client side framework
I am completely new to AJAX for ASP.NET. How do I check if AJAX client side framework is installed on my server? I am using Visual Studio 2010 and ASP.NET target framework is 3.5. If it is not ...
0
votes
1answer
2k views
JScript Runtime Error: AjaxControlToolkit requires ASP.NET 4.0
I implemented a simple autocomplete method using AJAX Autocomplete Extender through this video:
http://www.asp.net/ajax/videos/how-do-i-use-the-aspnet-ajax-autocomplete-control
I am pulling from the ...
0
votes
2answers
512 views
Creating an AJAX-Enabled Web Site
I'am trying to follow an ASP.NET with AJAX Training. At certain moment, they deploy an AJAX-Enabled Web Site. but for me I can't found this option (I'm using Visual Studio 2008).
Even if I installed ...
0
votes
0answers
894 views
How do you implement a combobox filter using AJAX in ASP.NET?
To save some time on discussing my problem you could check the demo below:
http://demos.telerik.com/aspnet-ajax/combobox/examples/functionality/filteringcombo/defaultcs.aspx
I already checked the ...