jpop115

Stories kicked by jpop115

Easy incremental status updates for long requests(encosia.com)

submitted by gt1329agt1329a(7849) 4 years, 7 months ago

An example of using an iframe to easily provide incremental status updates for long-running web requests. read more...

add a comment |category: |Views: 18

tags: another

Seamless inline text editing with ASP.NET AJAX(encosia.com)

submitted by gt1329agt1329a(7849) 4 years, 9 months ago

A demonstration of how to use ASP.NET AJAX to implement a Label that swaps to a TextBox for editing when clicked and then saves its value when editing is completed. read more...

add a comment |category: |Views: 275

tags: another

Updated your web.config, but Sys is still undefined?(encosia.com)

submitted by gt1329agt1329a(7849) 4 years, 9 months ago

How to use ASP.NET AJAX's Application.init event to safely call JavaScript after the framework is initialized and avoid the dreaded Sys is undefined error. read more...

add a comment |category: |Views: 23

tags: another

Robust ASP.NET control referencing in JavaScript(encosia.com)

submitted by gt1329agt1329a(7849) 4 years, 9 months ago

How to reference your controls in JavaScript by their true ClientID, so that changes in nesting and/or location won't break your client script. read more...

1 comment |category: |Views: 3

tags: another

Simplify ASP.NET AJAX client-side page initialization(encosia.com)

submitted by gt1329agt1329a(7849) 4 years, 9 months ago

pageLoad() is automatically wired up as a handler to Application.Load, which can be used to avoid window.OnLoad or body.OnLoad. read more...

add a comment |category: |Views: 5

tags: another

Get Yahoo's Internal HTTP Performance Analysis Tool(encosia.com)

submitted by gt1329agt1329a(7849) 4 years, 10 months ago

Yahoo has finally made YSlow, their HTTP profiling plugin to FireBug, available to the public. A must for any ASP.NET AJAX developer. read more...

1 comment |category: |Views: 6

tags: another

Display Data Updates in Real-Time with ASP.NET AJAX(encosia.com)

submitted by gt1329agt1329a(7849) 4 years, 10 months ago

An example of how to implement real-time 'spy' type updates, using ASP.NET AJAX, web methods, and .NET caching. Full source code included. read more...

1 comment |category: |Views: 363

tags: another

How to improve ASP.NET AJAX error handling(encosia.com)

submitted by gt1329agt1329a(7849) 4 years, 10 months ago

An example of how to replace those annoying JavaScript popup AJAX errors in Atlas with custom handling. read more...

add a comment |category: |Views: 86

tags: another

The easiest way to refresh an UpdatePanel with JavaScript(encosia.com)

submitted by gt1329agt1329a(7849) 4 years, 10 months ago

A quick, easy way to refresh an UpdatePanel, from client script. No hidden button or other kludge necessary. read more...

add a comment |category: |Views: 207

tags: another

Why ASP.NET AJAX UpdatePanels are dangerous(encosia.com)

submitted by k000derk000der(4765) 4 years, 10 months ago

Replace those UpdatePanels with WebMethods and JSON. read more...

5 comments |category: |Views: 78

tags: another

ASP.NET AJAX username availability check(encosia.com)

submitted by gt1329agt1329a(7849) 4 years, 10 months ago

A simple method to check the ASP.NET Membership Provider for a username's availability inline during a registration process, using AJAX. read more...

1 comment |category: |Views: 708

tags: another

Debug and explore AJAX with FireBug(encosia.com)

submitted by gt1329agt1329a(7849) 5 years, 2 months ago

An article showing in detail how to use a JavaScript debugger to learn about the ASP.NET AJAX framework and solve common problems. read more...

4 comments |category: |Views: 17

tags: another

AJAX, file downloads, and IFRAMEs(encosia.com)

submitted by gt1329agt1329a(7849) 5 years, 3 months ago

A limitation inherent in AJAX applications is that it's difficult to perform any operation requiring a full HTTP request and response round trip. This article demonstrates one technique to circumvent that limitation and prompt the user with a file steam download on an async postback. read more...

add a comment |category: |Views: 27

tags: another