Stories recently tagged with 'AJAX'

Book review: Pro HTML5 Programming(jclaes.blogspot.com)

submitted by JefClaesJefClaes(650) 1 year, 4 months ago

The Apress book Pro HTML5 Programming was written by three authors: Peter Lubbers, Brian Albers and Frank Salim. In this book the authors introduce the reader to the most popular and useful features of HTML5. The book contains 11 concise chapters.. read more...

add a comment |category: |Views: 4

tags: another

Working with AJAX and ASP.Net Generic Handlers(zainshaikh.posterous.com)

submitted by zainshaikhzainshaikh(74) 1 year, 4 months ago

AJAX (Asynchronous Javascript and XML) is vastly being used on the web today, and is one of great technologies which helps us making interactive web applications, and very beautiful and smooth web interfaces. The basic purpose of Ajax is to retrieve data from server asynchronously in the background and update the User Interface with out reloading the whole page. read more...

add a comment |category: |Views: 6

tags: another

ASP.NET Performance tip- Combine multiple script file into one request(jalpesh.blogspot.com)

submitted by jalpeshjalpesh(1347) 1 year, 4 months ago

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 so much over head for this. Asp.net Script Manager provides a feature to combine multiple JavaScript into one request but you must remember that this feature will be available only with .NET Framework 3.5 s... read more...

add a comment |category: |Views: 16

tags: another

Programmatically updating one update panel elements from another updat(jalpesh.blogspot.com)

submitted by jalpeshjalpesh(1347) 1 year, 4 months ago

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 update panel there is a button called btnHelloWorld. Now I want to update textbox text in button click event without post back. But in normal scenario It will not update the textbox text as both are in dif... read more...

add a comment |category: |Views: 2

tags: another

ASP.NET 4.0 Script Manager Enhancement Part-2 AjaxFrameworkMode Proper(jalpesh.blogspot.com)

submitted by jalpeshjalpesh(1347) 1 year, 5 months ago

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 property where we can set mode as explicit and we add only js that are required or not. There are three values of AjaxFrameworkMode properties supported in asp.netEnabled- Specified that ASP.NET... read more...

add a comment |category: |Views: 22

tags: another

JSONP the easy way with jQuery and a simple IHttpHandler(galratner.com)

submitted by galratnergalratner(334) 1 year, 5 months ago

JSONP or “JSON with padding” is a slight variation of JSON. In JSON we create a string representation of a JavaScript object and call eval(myObject) in order to create a live JavaScript object. We can then show the data in the object by simply looping over the fields or collections and setting the HTML in a div. read more...

add a comment |category: |Views: 19

tags: another

More accurate javascript execution time measurement with the msPerform(jclaes.blogspot.com)

submitted by JefClaesJefClaes(650) 1 year, 5 months ago

A cool feature of Internet Explorer 9 is the msPerformance API. This API helps you to accurately measure the performance of a webpage. A lot of developers have built their own performance measurement constructs over the years, based on the Date function, but the results of these constructs can be way off! read more...

add a comment |category: |Views: 2

tags: another

Learning By Sample Series – AJAX Control Toolkit 3 (bukansembarang.info)

submitted by soetamsoetam(210) 1 year, 5 months ago

New series in downloadable PDF format. AJAX Control Toolkit, covers some lessons : •Rating •Manipulating text files read more...

add a comment |category: |Views: 6

tags: another

Learning By Sample Series – AJAX Control Toolkit 2 (bukansembarang.info)

submitted by soetamsoetam(210) 1 year, 5 months ago

New series in downloadable PDF format. AJAX Control Toolkit, covers some lessons : •HTML Editor •Accordion read more...

add a comment |category: |Views: 6

tags: another

Async File Uploading using Asp.Net(www.kruegerwebdesign.com)

submitted by brentkruegerbrentkrueger(35) 1 year, 5 months ago

A description about using the Async file upload control with ASP.NET and some of its quarks. read more...

add a comment |category: |Views: 17

tags: another

Learning By Sample Series – AJAX Control Toolkit 1 (bukansembarang.info)

submitted by soetamsoetam(210) 1 year, 5 months ago

New series in downloadable PDF format. AJAX Control Toolkit, covers some lessons : •Numeric Up Down •Color Picker read more...

add a comment |category: |Views: 9

tags: another

New in the javascript Selector API(jclaes.blogspot.com)

submitted by JefClaesJefClaes(650) 1 year, 5 months ago

In this post I will show you two new methods in the javascript Selector API which are extremely useful to find elements. read more...

add a comment |category: |Views: 2

tags: another

Customized CSS Styles for AJAX Calendar Control(aspdotnet-suresh.blogspot.com)

submitted by sureshdasarisureshdasari(715) 1 year, 6 months ago

Customized CSS Styles for AJAX Calendar Control in asp.net read more...

add a comment |category: |Views: 15

tags: another

how to show the progressbar during postbacks in asp.net(aspdotnet-suresh.blogspot.com)

submitted by sureshdasarisureshdasari(715) 1 year, 6 months ago

how to show progressbar during postbacks in asp.net read more...

add a comment |category: |Views: 30

tags: another

Getting started with Bing Maps AJAX Control 7.0(www.i-programmer.info)

submitted by mikejmikej(661) 1 year, 6 months ago

The all-new Bing Maps Ajax API is faster and more efficient - but it is has a different interface and isn't backward compatible. If you want to get started using it - read on. read more...

add a comment |category: |Views: 22

tags: another

LABjs & RequireJS: Loading JavaScript Resources the Fun Way(msdn.microsoft.com)

submitted by LordLord(3737) 1 year, 6 months ago

avaScript resource loading has many different concerns that bear on how it is approached. An increasing number of sites and applications are relying on complex systems of JavaScript resources and many developers are hoping for easier, faster and more maintainable patterns for dependency management. The authors of two open source projects, LABjs and RequireJS, discuss some different perspectives that accomplish those goals. read more...

add a comment |category: |Views: 90

tags: another