很多時候, 只是因為感動, 所以就行動了.
雖然我沒有寫卡片, 但是我關心, 我是這樣安慰自己的. 畢竟搞出那些字, 對我來說, 可能比生個幾千行程式碼還硬.
下面是朱豪宅的相關連結, 有連續性:
something about coding And something about writting practice and welcome the comment. Here Use UTF-8.
很多時候, 只是因為感動, 所以就行動了.
雖然我沒有寫卡片, 但是我關心, 我是這樣安慰自己的. 畢竟搞出那些字, 對我來說, 可能比生個幾千行程式碼還硬.
下面是朱豪宅的相關連結, 有連續性:
The day, I upgraded the Community Server 2007 to 2008 in IIS7 (Windows Server 2008), and encountered one problem. The tag cloud links became ooo+xxx when the tag include space character. Of course, the link was broken.
The message from IIS as below
Most likely causes: The request contained a double escape sequence and request filtering is configured on the Web server to deny double escape sequences.
Things you can try:Verify the configuration/system.webServer/security/requestFiltering@allowDoubleEscaping setting in the applicationhost.config or web.confg file.
The discussion in the Telligent is as windows server 2008 - IIS7 - tags with space in name give 404.
The the clear steps as this KB.
<section name="requestFiltering" overrideModeDefault="Deny" />
Replace the code that you found in step 3 with the following code: <section name="requestFiltering" overrideModeDefault="Allow"/>
Locate the following diretory: </configuration>
<system.webServer>
<security>
<requestFiltering allowDoubleEscaping="True"/>
</security>
</system.webServer>
</configuration>