I am learning JQuery and today I did a small program with JQuery Ajax I am using JQuery 1.6.1 The application is very simple. It has a TextBox, a Button and a Label control. Once the user enters something in the textbox control and click on the Button control, then the request will go to the server and...
In one of our project we have requirement of maintaining history of Ajax events. After doing some search on the web I have found one interesting capabilities of Script Manager control. I have found that there is one property called “EnableHistory” which will enable history for all the Ajax Event for...
JQuery UI contains great controls and it’s very useful when developing sites. Today a new version of Jquery UI is launched. You can find more details about that from following link. http://blog.jqueryui.com/2011/01/jquery-ui-1-8-9/ It’s contains Bug fixes for Datepicker, Tabs and other things and also...
We all know that JSON (JavaScript Object Notation) is very useful in case of manipulating string on client side with java script and its performance is very good over browsers so let’s create a simple example where convert a Generic List then we will convert this list into JSON string and then...
Posted to
DotNetJalps-SQL
by
Jalpesh
on
01-09-2011
Filed under:
Filed under: C#.NET, BRH, #DATAACCESS, #DOTNET, #LINQ, #ASP.NET, JavaScript, ASP.NET, jQuery, #jquery, Ajax, WebService, #.NET, ASP.NET 4.0, JSON
We all need java script for our web application and we storing our JavaScript code in .js files. Now If we have more then .js file then our browser will create a new request for each .js file. Which is a little overhead in terms of performance. If you have very big enterprise application you will have...
While taking interviews for asp.net candidate I am often asking this question but most peoples are not able to give this answer. So I decided to write a blog post about this. Here is the scenario. There are two update panels in my html code in first update panel there is textbox hello world and another...
This will be a second part of ASP.NET 4.0 Script Manager enhancement. In this post I am going to explain about AjaxFrameworkMode Property. In Earlier asp.net version of script manager it will load entire Microsoft Ajax library whether its required or not. In asp.net 4.0 script manager we are having AjaxFrameMode...
ASP.NET 4.0 has been a great step forward to the programming. Microsoft has done incredible job with the performance. One of them is Enable CDN Property in asp.net 4.0 Script Manager. Let's explore it in details. As you all know that Microsoft is Providing Content Delivery Network for all the Ajax...
Here are the difference between HTTP Handlers and HTTP Modules. Http Handlers: Http handlers are component developed by asp.net developers to work as end point to asp.net pipeline. It has to implement System.Web.IHttpHandler interface and this will act as target for asp.net requests. Handlers can be...
When I am interviewing .NET developers I often ask this question: what is the difference between a Web Service and a WCF service. Many people don't know the exact difference between them, that's why I decided to write a blog about this topic. Here are the few differences. Web services can be...
As I have post it in earlier post that jQuery is one of most popular JavaScript library in the world amongst web developers Lets take a example calling ASP.NET web service with jQuery . You will see at the end of the example that how easy it is to call a web service from the jQuery. Let’s create...