This is just a spot to keep miscellaneous links. It also shows you what a geek I am.
Monday, February 23, 2009
Wednesday, February 11, 2009
How to determine iPhone firmware version
This didn't work for me. Brought up tons of diagnostics, but no version.
"How do I find out what firmware version my iPhone is?
You don't actually need to know this in order to unlock your iPhone with us, as our software works with all current iPhone firmware versions, but to check yours - simply dial *3001#12345#* then press the call button, compare your Modem version to the table below to find out your firmware version:
1. 04.04.05_G - OTB 1.1.4 iPhone
2. 04.03.13_G - OTB 1.1.3 iPhone
3. 04.02.13_G - OTB 1.1.2 iPhone
4. 04.01.13_G - OTB 1.1.1 iPhone"
Monday, February 09, 2009
ASP.NET AJAX partial update does not work with xhtmlConformance tag in web.config
What a pain! I spent hours troubleshooting this.
I converted a .NET 1.1 application to .NET 2.0. The web.config had this section:
When I removed the xhtmlConformance tag, it began working again.
I converted a .NET 1.1 application to .NET 2.0. The web.config had this section:
<system.web>
...
<xhtmlConformance mode="Legacy"/>
...
</system.web>
When I removed the xhtmlConformance tag, it began working again.