Show
Ignore:
Timestamp:
10/02/08 08:41:31 (3 months ago)
Author:
poolmmjp
Message:

投稿するとき、+文字をURLエンコードするようにした。

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/csharp/MMMMB/MMMMB/MiniBlogs/Echo.cs

    r17635 r20445  
    9999        public void Post(string message) 
    100100        { 
    101             postCore("http://mixi.jp/add_echo.pl", "body=" + HttpUtility.UrlEncode(message, Encoding.GetEncoding("euc-jp")) + "&post_key=" + postKey + "&redirect=recent_echo"); 
     101            postCore("http://mixi.jp/add_echo.pl", "body=" + HttpUtility.UrlEncode(message, Encoding.GetEncoding("euc-jp")).Replace("+", "%2B") + "&post_key=" + postKey + "&redirect=recent_echo"); 
    102102        } 
    103103