Welcome to Tech-Review.Org Sign in | Join | Help

.net_2.0

My coding blog entries. Typically will either be more complex coding examples or overcoming product issues / troubleshooting resolutions.

Browse by Tags

All Tags » Ajax   (RSS)
Working with Response Codes...
When developing custom IHTTP handlers; a developer has to handle when a parsed incoming url request does not match any dynamic content - or in other words - "404 Page Not Found". A well written IHTTP handler will most likely - when exhausting all possible Read More...
Comments on: Sys.WebForms.PageRequestManagerParserErrorException - what it is and how to avoid it
Elion Lipton recently wrote - Sys.WebForms.PageRequestManagerParserErrorException - what it is and how to avoid it , which explains some of the reasons the PageRequestManagerParserErrorException occurs. Please, take this in the spirit it is intended - Read More...
BUG: FireFox 2.0.0.2 ModalPopUp Extender
I updated FireFox this morning to 2.0.0.2 - and lo and behold all of my ModalPops were no longer popping up. It sadly is not a issue with plug-ins or the likes. When you will see the issue: When you use the .Show() in code-behind. When the modal is not Read More...
Gridviews: Select / De-Select all Records without Javascript using Checkbox in Header
8 hours of combing through blogs, forum posts and books to find a spcific answer to a specific problem. You see it all the time on sites like Yahoo Mail, where there is a convienent checkbox in the the header of a table / gridview that selects or de-selects Read More...
Ajax: HoverMenuExtender
The HoverMenuExtender can be a fabulous control that can be used to jazz up your website and increase the actual usability of your site. It works by attaching itself to a control such as a LinkButton, Image, or pretty much any control you see fit. The Read More...
Ajax and Iframes
Even with AJAX capabilities - there are times that a multi-frame page must be generated. Some reasons would be: Your application uses a IHTTP Handler (no master pages) to generate content and requires passing in query string parameters. Lack of desire Read More...
Tips and Tricks Ajax
Collection of Miscellaneous Tips and Solutions - and not really many tricks... Using Trace In a blog post long ago, one of the issues I had was using Trace. I had always used trace by setting it to true / enabled and scrolling to the end of the page. Read More...
New Ajax ToolKit Out..Links..
Today was released a new 'official' release of the Ajax Toolkit . It apparently solves some issues with viewstate, gives the modalpopup some additional scenarios to be worked in, and a few other updates...but. If you run a DGS (dynamically generated site), Read More...
Part 4 - Building a Submission Form that Saves In Progress Drafts (MSFT AJAX)
Today's entry will outline some of the bugs with previous code. For some reason code that works absolutely fine in my normal project solutions did not work with the Web Application Project solution the AjaxToolkit uses. Thus - I glad to report we have Read More...