-
JQuery and Partial Postbacks
I recently came across an issue where JQuery bindings no longer functioned after a partial postback and stumbled upon some code that was helpful in most cases. Javascript (JQuery): And alternatively.. This code will not always work however, as was the case in my particular scenario, so I resolved using an alternate method. RegisterStartupScript is…
-
IIS Application Pool
A great many documents, blogs and references exist on IIS which cover it comprehensively. This article simply serves to discuss one aspect – the application pool. When configuring IIS in an environment that will contain many websites, there are a few important considerations: – Will each site potentially run different versions of .NET? Sites with…
-
JQuery and Frames
Although there is definitely some room for debate in the web development and design community on where the usage of frames is necessary, there are some situations where they cannot be avoided. Manipulation of data within these frames can be confusing, and dumping frames to page content using ajax or server side code is not…
-
2010 in review
The stats helper monkeys at WordPress.com mulled over how this blog did in 2010, and here’s a high level summary of its overall blog health: The Blog-Health-o-Meter™ reads Minty-Fresh™. Crunchy numbers A Boeing 747-400 passenger jet can hold 416 passengers. This blog was viewed about 1,300 times in 2010. That’s about 3 full 747s. In…
-
Get IP Address of Originating Website From a Webservice
The following code was used in a .Net 3.5 web service to retrieve the IP Address of the website consuming it. This solution may initially escape you since it might seem like the web service should run within an HTTP Context and thus utilize this object to get information from websites calling particular methods. See…
