Select, Update, Highlight using JSON, ASPNET WebService and jQuery

jQuery AJAX can improve application use and response drastically for various reasons as most of the time server is dealing with small segment of the page and producing results just for that segment, this way server can accept more requests. Select, insert, update are some of the very common tasks a data driven web application performs. With the use of AJAX these operations become more easy to handle.

Today we will look at how to bring data on page using JSON and then update it using JSON, all this with the help of ASP.NET web services and jQuery. [More]

Tags: , , , , ,

AJAX | ASP.NET | jQuery

Disable right click context menu, cut, copy, paste operations on ASPNET Textbox using jQuery

Context menu on textboxes are useful and comes handy a lots of time but sometimes you may want to disable it for certain reasons like disable copy paste on username, password box or disable textboxes that are expecting same value in two textboxes to avoid any typo like confirm email address. [More]

Tags: , , ,

ASP.NET | jQuery

Display Selected ASP.NET Checkbox Label using jQuery

ASP.NET Checkbox server control's text get render as label, using jQuery we can find our labels for only those Checkboxes that are selected. You can use it for many different purposes and one of that we will look at in future article. [More]

Tags: , , , , , ,

ASP.NET | jQuery

Select/Deselect ASP.NET CheckboxList using jQuery

Providing multiple checkboxes on page is very common when collecting information/interest from user. Having one additional checkbox to select all checkboxes is a very interesting and compelling functionality and is very easy to achieve with jQuery. [More]

Tags: , , , , , , , ,

ASP.NET | jQuery