DCSIMG
ASP.NET,AJAX - LINQED.NET

LINQED.NET

This blog is about .NET and related technologies
By Vlad Azarkhin

Browse by Tags

All Tags » ASP.NET » AJAX (RSS)
WDC.IL March meeting: JavaScript and jQuery
Hi all! The meeting will take place tomorrow, March 14, 2011. This time, I’m going to dive deep into JavaScript concepts, such as context, closures, functions and so on. In my feeling, understanding those concepts is an absolute must for every web developer. Come and learn for free! You can still register using this link: http://wdcil3.eventbrite.com . See you there!
Network Traffic Capturing with IE9 Developer Tools
  Internet Explorer 8 has introduced developers tools for inspecting and debugging web pages. It allows, for example, selecting a DOM element and investigating it, debugging JavaScript by stopping on errors or breakpoints and some other useful stuff. However, one thing was missing there: network traffic capturing and analysis. Traffic capturing is vital for analysis of your web site. Such tools usually show all the resources that are downloaded during a request, along with their response status...
Posted: Oct 06 2010, 02:37 PM by linqed | with 2 comment(s)
תגים:, , , ,
Canceling AJAX Web Service call
There are times you need to develop a data-entry web form calling and AJAX-enabled web service to perform some complex computations that must be done on the server (for example, when a database access needed to do the computation). The computation is sometimes based on numerous data-entry fields, so when a change in one of the fields has occurred, you want to send a web service request to re-compute the data. As a most simple example, I’ll create a form that is capable of doing an extremely difficult...