Justin Cooney
Web Development Tips and Examples
Category: ASP.NET
-
In this article I will go through a technique that you can use when working with a modal popup that lets you store form information from your popup to later use with your main Web form. In earlier articles I have covered some of the general functions and benefits of using the ShowModalDialog function that I…
-
If you are retrieving or adding values from and to your database then you will know the difficulties that can be caused by NULL values. The notorious InvalidCastException is one example of receiving a NULL value from your database into an ASP.NET object that doesn’t know what to do with database NULL values. Here’s typical example…
-
Sometimes you will want to do something very specific on a Web page using a combination of popular technologies. However the interaction of client and server-side languages such as JQuery and ASP.NET can become confusing, especially when the server side language starts adding client-side functionality such as through an UpdatePanel control. In this article I’m…