Posted on March 31, 2009 by Lisa Zhou
Today while figuring out how to do something for a project, the solution that was chosen was to dynamically load a user control to the page.
After getting null reference errors and the control completely not rendered on the page, I found the solution to be this.
Control FeaturedProductUserControl = LoadControl(“FeaturedProduct.ascx”);
Controls.Add(FeaturedProductUserControl);
There is an article that I came [...]
Filed under: Visual Studio .Net & Ajax.Net | Leave a Comment »
Posted on February 11, 2009 by Lisa Zhou
Yesterday I came across this article at http://unixpapa.com/js/mouse.html, the author of the article documented all the different JavaScript events triggered by the same mouse event under different browsers, which is really really useful.
I’ve extracted only the events component here and combined them to a table, if you want to know about these events please visit [...]
Filed under: Visual Studio .Net & Ajax.Net | Tagged: Javascript, mouse events | Leave a Comment »
Posted on January 14, 2009 by Lisa Zhou
Although I’ve tried very very hard to use Internet Explorer for web development, I just kept coming back to Firefox. I know I should use IE, especially IE6 since that’s where all the bugs happen to be found in, but it’s just not the same.
Over the years I’ve tried quite a few, and uninstalled quite [...]
Filed under: News, Visual Studio .Net & Ajax.Net | Tagged: .Net, Ajax, Firebug, Firefox, Firefox Add-on, html, YSlow | 1 Comment »
Posted on January 8, 2009 by Lisa Zhou
I hadn’t really been exposed to web farm or load balancing much before. After having to use multiple web servers for one of my previous probject, I realised that the default session mode for the .Net project will no longer work in a multiple web server environment.
With load balancing, the request is directed to which [...]
Filed under: Visual Studio .Net & Ajax.Net | Leave a Comment »