Hi,
You only needed to delete Resource.zh-Hant.resx, it was not needed to delete all those other ones.
I think if you had upgraded your machine to XP SP 3 this problem would not happen.
The background information for this problem is discussed in this blog post:
http://blogs.msdn.com/shawnste/archive/2006/11/14/problems-compiling-resources-in-net-2-0-apps-after-updates.aspx
The problem is that ISO codes changed for some languages, in this case it is specifically the Traditional Chinese translation, where the ISO code changed from zh-CHT to zh-Hant. Our resource file for this language uses the new name Resource.zh-Hant.resx, but your machine apparently does not recognize the new ISO code zh-Hant and it causes this error.
The first thing you should do is run Windows Update and make sure you are up to date on all .NET updates and service paks (XP SP3). After doing that your machine may/should correctly recognize zh_Hant and if so it will fix the problem for you and this would be the best solution.
If getting all the updates does not solve it, try renaming the file Web/App_GlobalResources/Resource.zh-Hant.resx to Web/App_GlobalResources/Resource.zh-CHT.resx
If that doesn't work try just deleting the file that you renamed to Resource.zh-CHT.resx
Hope it helps,
Joe