first_page

.NET/PHP/Python Links

.NET Links

Here is a link for the CommandEventHandler Delegate. My guess is that this link was saved because of the last serious ASP.NET push a few months ago. My thinking was that the Button.Command event should be considered before habitually using the Button.Click event. MSDN: “This event is commonly used when a command name, such as Sort, is associated with the Button control. This allows you to create multiple Button controls on a Web page and programmatically determine which Button control is clicked.”

Global.asax? Use HttpModules Instead!” by Karl Seguin provides clear guidance about habitually and blindly using Global.asax in ASP.NET.

Script# was mistaken for the equivalent of JScript .Net. The thought is that somehow JScript .Net is not ‘ready’ for the Visual Studio mainstream so it needs help from third parties. This thought seems in error.

The VirtualPathProvider Class makes ‘pretty URLs’ for ASP.NET applications but this is just the beginning.

PHP Links

Programming:PHP:SQL Injection” at wikibooks.org is always there as a reminder. A few days ago a generic procedure to update/insert data was written including array_walk() with a callback to a function featuring mysql_real_escape_string().

The “Pattern Modifiers” article in the PHP manual shows up in my notes probably because of this little ditty called phpGetInnerXml(), written a few days ago.

getid3.org revives my interest in building/installing a simple, OS-agnostic, media server. I’m not looking for the Open Source equivalent of Windows Media Center Edition.

For some reason, there is more openness to using SQLite with PHP. My guess is that this motivation comes with its appearance in PHP 5.

Python Links

The focus here is on the XML support in Python. The doc’ to read is “The State of Python-XML in 2004” by Uche Ogbuji. A 2006 article was not found.

Apache needs mod_python.

rasx()