By tag: mattberseth
0
kicks
Virtual Earth Map Control within a ModalPopup
How to display the Virtual Earth Map Control using the ModapPopupExtender control
0
kicks
ModalPopupExtender for Editing Rows in a GridView (Master/Deta
Example showing how to implement the classic Master/Details scenario using ASP.NET AJAX and the ModalPopupExtender control in the ASP.NET AJAX Control Toolkit.
0
kicks
DisableControlExtender
An AjaxControlToolkit extender control that is useful for disabling controls during partial postbacks ...
0
kicks
In-Depth: The UpdatePanel ASP.NET AJAX Server Control: Triggers and Up
In depth article of UpdatePanel: Using Triggers and UpdateMode
0
kicks
Rendering a Gmail 'Loading' Indicator over a Specific ASP.NET Control
A recent 'kicks' article showed how to use an UpdateProgress to display a page level gmail-like status indicator. This article shows a technique for rendering the indicator over the control contained within an updatepanel. On pages where there are a lot of controls, this lets the user know exactly...
0
kicks
EventHandlerList - Declaring .Net Events that Conserve Memory
Ever heard of the EventHandlerList object that lives in the System.ComponentModel namespace of the .Net framework? I hadn't until I disassembled the System.Windows.Forms.Control class while debugging the other day. I did a few google searches and ended up on an MSDN page titled 'How to: Declare Ev...
0
kicks
ASP.NET AJAX: Invoke a static method from script
Did you know that with ASP.NET AJAX you can easily invoke static methods declared on your ASP.NET page from script on the client? To enable this you will need to do the following ...
0
kicks
Quick Tip: Use System.IO.Path.Combine instead of string concatenation
System.IO.Path has a number of utility methods that are useful when you have to progamatically build a file path ...
0
kicks
Quick Ajax Tip: Provide a better asp:Wizard user experience
Wrapping an asp:Wizard in an asp:UpdatePanel is a nice way to improve the user experience of your web pages. Throw in a couple of animation cues using the UpdatePanelAnimationExtender and your application will really ...
0
kicks
7 simple steps to ajax-enable your ASP GridView
I recently used the AJAX.NET framework in a project and I was impressed with how easy it was to implement and how much it improved the usability of our pages. Our project had quite a few advanced search pages where users can enter in a number of different filters and then hit the search button (usu...
0
kicks
Quick Tip: Order By 1 Desc
Did you know that instead of specifying the name or column alias in a SQL Server Order By expression you can optionally use an integer representing the position of the column name or alias within the select list you want to sort by ...
0
kicks
Deploying config files to multiple environments - dev, stage, prod
A common problem most application developers face at one time or another is managing the deployment of the environment specific configuration elements their application depends on. Most often these elements include items like connection strings, file paths or other settings the application requires...
0
kicks
Ajax.Net Example: Using an UpdatePanelAnimationExtender to animate ...
I recently was working on an Asp.Net project that contained quite a few search pages. These pages all followed a similar structured pattern where the user had a set of fields they could filter on by typing in values and pressing the search button. The results were displayed in a GridView where the...