<?xml version="1.0" encoding="UTF-8" ?> <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>ASP.NET</title><link>http://blogs.wankuma.com/trapemiya/category/370.aspx</link><description>ASP.NET</description><managingEditor>trapemiya &lt;miya.hideki@nifty.com&gt;</managingEditor><dc:language>ja-JP</dc:language><generator>.Text Version 0.95.2004.102</generator><item><dc:creator>trapemiya &lt;miya.hideki@nifty.com&gt;</dc:creator><title>【ASP.NET】 一つのCalendarExtenderで同時に開始日と終了日をセットした場合、終了日が小さくなる場合のエラー対処</title><link>http://blogs.wankuma.com/trapemiya/archive/2009/08/10/180021.aspx</link><pubDate>Mon, 10 Aug 2009 17:03:00 GMT</pubDate><guid>http://blogs.wankuma.com/trapemiya/archive/2009/08/10/180021.aspx</guid><wfw:comment>http://blogs.wankuma.com/trapemiya/comments/180021.aspx</wfw:comment><comments>http://blogs.wankuma.com/trapemiya/archive/2009/08/10/180021.aspx#Feedback</comments><slash:comments>75</slash:comments><wfw:commentRss>http://blogs.wankuma.com/trapemiya/comments/commentRss/180021.aspx</wfw:commentRss><trackback:ping>http://blogs.wankuma.com/trapemiya/services/trackbacks/180021.aspx</trackback:ping><description>&lt;P&gt;一つのCalendarExtenderで開始日と終了日を同時にセットする場合、CalendarExtenderのプロパティの設置だけでは無理で、以下のようにする必要がある。&lt;/P&gt;
&lt;P&gt;CalendarExtenderのOnClientDataSelectionChangedプロパティに実行したいjavascriptの関数を指定する。OnClientDataSelectionChangedは想像が付くと思うが、カレンダーで選択している日付が変わった時に実行されるjavascriptを指定する。ここでは終了日に開始日と同じ日付をセットしたいので、SetEdDateというjavascriptを指定した。SetEdDateは単純で、以下のとおりである。&lt;/P&gt;
&lt;DIV style="PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; DISPLAY: inline; FLOAT: none; PADDING-TOP: 0px" id=scid:812469c5-0cb0-4c63-8c15-c81123a09de7:93f4ab96-2c4d-4f6e-a555-9a5186a48e81 class=wlWriterEditableSmartContent&gt;&lt;PRE class=js name="code"&gt;function SetEdDate(sender) {
    if (document.Form1.chkb_withStdate.checked) {
        document.Form1.txtb_eddate.value = sender.get_selectedDate().format('yyyyMMdd');
    }
}&lt;/PRE&gt;&lt;/DIV&gt;
&lt;P&gt;これでばっちりだ。&lt;/P&gt;
&lt;P&gt;と、思うのは早かったorz　　CalendarExtenderで終了日よりも大きな日付を選択すると、開始日と終了日に仕掛けてあるCompareValidatorが反応する。この流れはこうだ。&lt;/P&gt;
&lt;P&gt;１．CalendarExtenderで日付を選択。&lt;/P&gt;
&lt;P&gt;２．開始日がその日付にセットされる。&lt;/P&gt;
&lt;P&gt;３．開始日が終了日より大きい場合、CompareValidatorがエラーを検知する。&lt;/P&gt;
&lt;P&gt;４．SedEdDateで終了日に開始日の日付がセットされる。しかし、javascriptでセットされたため、CompareValidatorが反応しない。&lt;/P&gt;
&lt;P&gt;結果、開始日と終了日が等しいにも関わらず、CompareValidatorはエラーを示したままになっている。&lt;/P&gt;
&lt;P&gt;これを解決するには、４でCompareValidatorを起動してやれば良い。起動はPage_ClientValidate()を実行することで実現できる。最終的には以下のコードでうまくいった。&lt;/P&gt;
&lt;DIV style="PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; DISPLAY: inline; FLOAT: none; PADDING-TOP: 0px" id=scid:812469c5-0cb0-4c63-8c15-c81123a09de7:6f27df04-91f9-49d1-bde1-42c44bfc4c29 class=wlWriterEditableSmartContent&gt;&lt;PRE class=js name="code"&gt;function SetEdDate(sender) {
    if (document.Form1.chkb_withStdate.checked) {
        document.Form1.txtb_eddate.value = sender.get_selectedDate().format('yyyyMMdd');

        //CalendarExtenderによってセットされたstdateがeddateが大きいと、終了日付が小さいエラーになる。
        //その後、eddateがstdateがセットされるがvalidationが動かないので、手動で動かす。
        Page_ClientValidate();
    }
}&lt;/PRE&gt;&lt;/DIV&gt;
&lt;P&gt;なお、Page_ClientValidate()はWebUIValidation.jsの中にある。Page_ClientValidate()の使用は保障されていないので少々気持ち悪いが、今回の解決としては一番お手軽である。&lt;/P&gt;&lt;img src ="http://blogs.wankuma.com/trapemiya/aggbug/180021.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>trapemiya &lt;miya.hideki@nifty.com&gt;</dc:creator><title>【ASP.NET】 AjaxではSmartNavigationはダメ</title><link>http://blogs.wankuma.com/trapemiya/archive/2009/08/10/180016.aspx</link><pubDate>Mon, 10 Aug 2009 15:57:00 GMT</pubDate><guid>http://blogs.wankuma.com/trapemiya/archive/2009/08/10/180016.aspx</guid><wfw:comment>http://blogs.wankuma.com/trapemiya/comments/180016.aspx</wfw:comment><comments>http://blogs.wankuma.com/trapemiya/archive/2009/08/10/180016.aspx#Feedback</comments><slash:comments>38</slash:comments><wfw:commentRss>http://blogs.wankuma.com/trapemiya/comments/commentRss/180016.aspx</wfw:commentRss><trackback:ping>http://blogs.wankuma.com/trapemiya/services/trackbacks/180016.aspx</trackback:ping><description>&lt;p&gt;ASP.NET 1.1のプロジェクトを.NET Framework 3.5に上げました。目的はAjaxのCalendarExtenderが使いたかったからです。&lt;br&gt;と、ここまでは良かったのですが、実行して何かのボタンを押してポストバックが発生した後に、ふたたびボタンを押してポストバックが発生しようとすると、必ずSys.ArgumentTypeExceptionのエラーが発生するようになった。&lt;/p&gt; &lt;p&gt;いろいろ調べていると、どうやらSmartNavigationがダメらしい。確かにこのプロジェクトはDataGridを使っている。確かめてみるとやはり、SmartNavigation = trueであった。SmartNavigationを止めるとあっさりこのエラーは発生しなくなった。&lt;/p&gt;&lt;img src ="http://blogs.wankuma.com/trapemiya/aggbug/180016.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>trapemiya &lt;miya.hideki@nifty.com&gt;</dc:creator><title>サポート技術情報のRSSって新着サポート技術情報だけになっちゃったんだね？</title><link>http://blogs.wankuma.com/trapemiya/archive/2008/07/29/150792.aspx</link><pubDate>Tue, 29 Jul 2008 12:13:00 GMT</pubDate><guid>http://blogs.wankuma.com/trapemiya/archive/2008/07/29/150792.aspx</guid><wfw:comment>http://blogs.wankuma.com/trapemiya/comments/150792.aspx</wfw:comment><comments>http://blogs.wankuma.com/trapemiya/archive/2008/07/29/150792.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blogs.wankuma.com/trapemiya/comments/commentRss/150792.aspx</wfw:commentRss><trackback:ping>http://blogs.wankuma.com/trapemiya/services/trackbacks/150792.aspx</trackback:ping><description>&lt;P&gt;久しぶりにサポート技術情報のRSS一覧を見に行ったら見つからない。あれ？どこだっけな？と探すこと小一時間。その間に気になる記事とかつまみ食いしてたこともありますが・・・。&lt;BR&gt;あまりにも見つからないので検索対象を広げたところ、Jittaさんのブログ発見。&lt;/P&gt;
&lt;P&gt;マイクロソフト サポート情報の RSS フィード &lt;BR&gt;&lt;A href="http://blogs.wankuma.com/jitta/archive/2008/07/17/149421.aspx"&gt;http://blogs.wankuma.com/jitta/archive/2008/07/17/149421.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;あれ～、無くなっちゃったのね。なんでだろー。&lt;BR&gt;とりあえずJittaさんのおかげで解決。多謝。&lt;BR&gt;たぶんこのJittaさんの記事、一度はタイトルだけは見てるはずなんだけど、さくっと通り過ぎてたなぁ。&lt;BR&gt;それにしても直近でナイスな記事でした。この記事が無かったらお昼ご飯が遅れてたもの。&lt;/P&gt;
&lt;P&gt;というわけで現在正式に表に出ているのは、ＭＳＤＮホームのトップページにあるサポート技術情報のRSSだけかな？これはどうも新着サポート技術情報のRSSのようです。&lt;/P&gt;
&lt;P&gt;じゃっ、お昼ごはんということで。&lt;/P&gt;&lt;img src ="http://blogs.wankuma.com/trapemiya/aggbug/150792.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>trapemiya &lt;miya.hideki@nifty.com&gt;</dc:creator><title>【VS2003】Webソリューションファイルを開こうとしたらhoge.csprojを読み取れませんと言われた時の対処方法</title><link>http://blogs.wankuma.com/trapemiya/archive/2008/03/07/126743.aspx</link><pubDate>Fri, 07 Mar 2008 11:09:00 GMT</pubDate><guid>http://blogs.wankuma.com/trapemiya/archive/2008/03/07/126743.aspx</guid><wfw:comment>http://blogs.wankuma.com/trapemiya/comments/126743.aspx</wfw:comment><comments>http://blogs.wankuma.com/trapemiya/archive/2008/03/07/126743.aspx#Feedback</comments><slash:comments>13</slash:comments><wfw:commentRss>http://blogs.wankuma.com/trapemiya/comments/commentRss/126743.aspx</wfw:commentRss><trackback:ping>http://blogs.wankuma.com/trapemiya/services/trackbacks/126743.aspx</trackback:ping><description>&lt;P&gt;パソコンを新しくしたので、旧パソコンから以下のようにコピー。&lt;/P&gt;
&lt;P&gt;VS2003のソリューションファイルが入っているフォルダをVS2003のプロジェクトを管理しているフォルダ内にフォルダごとコピー。さらに、Webアプリケーションの実態が入っているフォルダ（hoge.csprojとかhoge.aspxとかあるとこ）を、C:\Inetpub\wwwroot以下にフォルダごとコピー。&lt;/P&gt;
&lt;P&gt;その後、そのソリューションを開こうとして、hoge.slnを右クリックして「プログラムから開く」を選択し、「Microsoft Visual Studio .NET 2003」から開こうとするが、&lt;/P&gt;
&lt;P&gt;「プロジェクト　ファイル　'hoge.csproj'が読み取れません。指定されたパスが見つかりません。」&lt;/P&gt;
&lt;P&gt;と表示され開けない。hoge.slnの中身を覗くと、何やら&lt;A href="http://localhost/hoge/hoge.csproj"&gt;http://localhost/hoge/hoge.csproj&lt;/A&gt;　の記述がある。確認するが、確かにこの場所にhoge.csprojは存在している。&lt;/P&gt;
&lt;P&gt;結局、原因不明だが、以下のように手順を踏むと復活することがわかった。&lt;/P&gt;
&lt;P&gt;１．C:\Inetpub\wwwroot\hogeにあるhoge.csprojを右クリックして「プログラムから開く」を選択し、「Microsoft Visual Studio .NET 2003」から開く。&lt;/P&gt;
&lt;P&gt;２．無事に開けるのでそのまま閉じる。閉じる時に、hoge.slnの保存を聞いてくるので、元々あるhoge.slnに上書き保存すればＯＫ。ただし、元々あるhoge.slnは読み取り専用になっているので、それを解除しておくこと。&lt;/P&gt;&lt;img src ="http://blogs.wankuma.com/trapemiya/aggbug/126743.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>trapemiya &lt;miya.hideki@nifty.com&gt;</dc:creator><title>framesetの間違った書き方</title><link>http://blogs.wankuma.com/trapemiya/archive/2007/08/30/92768.aspx</link><pubDate>Thu, 30 Aug 2007 15:08:00 GMT</pubDate><guid>http://blogs.wankuma.com/trapemiya/archive/2007/08/30/92768.aspx</guid><wfw:comment>http://blogs.wankuma.com/trapemiya/comments/92768.aspx</wfw:comment><comments>http://blogs.wankuma.com/trapemiya/archive/2007/08/30/92768.aspx#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://blogs.wankuma.com/trapemiya/comments/commentRss/92768.aspx</wfw:commentRss><trackback:ping>http://blogs.wankuma.com/trapemiya/services/trackbacks/92768.aspx</trackback:ping><description>&lt;P&gt;いまやあんまり使わなくなったframesetだけど、昔作ったASP(ASP.NETじゃない）で作ったイントラネットアプリでは多用しており、今でも現役で動いている。&lt;BR&gt;で、そのうちの一つを改造したのだが、これですっかりはまってしまった。現象として、&lt;/P&gt;
&lt;P&gt;１．おかしな表示になるパソコンとそうでないパソコンがある。&lt;/P&gt;
&lt;P&gt;２．おかしな表示になるパソコンでは、お気に入りやショートカットから開くのではなく、直接ＵＲＬをたたくとうまく動く。また、お気に入りやショートカットから開いた場合でも、まれにうまく動く時がある。&lt;BR&gt;おかしな表示になっている時、本日からのデータを表示するはずが、なぜか昨日からの表示になり、そして本日からの表示に移動している。結果として、ブラウザの戻るボタンがアクティブになり、履歴ができている。&lt;/P&gt;
&lt;P&gt;で、いろいろ調べていてわかったのだが、今の今までframesetの書き方を間違えていた。たぶん、間違った書き方が載っているサイトを参照したからであろう。つまりは、&lt;/P&gt;
&lt;P&gt;&amp;lt;framset　・・・&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;/frameset&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;noframes&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;/noframes&amp;gt;&lt;/P&gt;
&lt;P&gt;じゃなく、&lt;/P&gt;
&lt;P&gt;&amp;lt;framset　・・・&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;noframes&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;/noframes&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;/frameset&amp;gt;&lt;/P&gt;
&lt;P&gt;だったのね。&lt;/P&gt;
&lt;P&gt;他のASP製のアプリも全部間違っているけど、うまくうごいている。どうやらframesetが深くネストしなければ問題にないようである。ちなみに問題が発生したアプリは３階層ネストしている。&lt;/P&gt;
&lt;P&gt;というわけで、他のASP製のアプリをどうしようかと思ったけど、動いているから、まぁ、いいとしよう。&lt;BR&gt;さすがというか恐るべしというか何ていうかＨＴＭＬ。&lt;/P&gt;
&lt;P&gt;（参考）&lt;BR&gt;FRAMESETの使い方&lt;BR&gt;&lt;A href="http://hp.vector.co.jp/authors/VA014833/wrong1.html"&gt;http://hp.vector.co.jp/authors/VA014833/wrong1.html&lt;/A&gt;&lt;/P&gt;&lt;img src ="http://blogs.wankuma.com/trapemiya/aggbug/92768.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>trapemiya &lt;miya.hideki@nifty.com&gt;</dc:creator><title>Beginning Asp.net 2.0 Ajax</title><link>http://blogs.wankuma.com/trapemiya/archive/2007/07/13/85044.aspx</link><pubDate>Fri, 13 Jul 2007 11:29:00 GMT</pubDate><guid>http://blogs.wankuma.com/trapemiya/archive/2007/07/13/85044.aspx</guid><wfw:comment>http://blogs.wankuma.com/trapemiya/comments/85044.aspx</wfw:comment><comments>http://blogs.wankuma.com/trapemiya/archive/2007/07/13/85044.aspx#Feedback</comments><slash:comments>3</slash:comments><wfw:commentRss>http://blogs.wankuma.com/trapemiya/comments/commentRss/85044.aspx</wfw:commentRss><trackback:ping>http://blogs.wankuma.com/trapemiya/services/trackbacks/85044.aspx</trackback:ping><description>&lt;P&gt;&lt;A href="http://www.amazon.co.jp/Beginning-Asp-net-Ajax-Wallace-McClure/dp/0470112832/ref=sr_1_1/249-6916615-3641930?ie=UTF8&amp;amp;s=english-books&amp;amp;qid=1184293374&amp;amp;sr=8-1"&gt;http://www.amazon.co.jp/Beginning-Asp-net-Ajax-Wallace-McClure/dp/0470112832/ref=sr_1_1/249-6916615-3641930?ie=UTF8&amp;amp;s=english-books&amp;amp;qid=1184293374&amp;amp;sr=8-1&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;というのが出るようですね。それにしてもProgramming Microsoft Ado.net 2.0の日本語訳版って、まだ出ないのかなぁ？&lt;/P&gt;&lt;img src ="http://blogs.wankuma.com/trapemiya/aggbug/85044.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>trapemiya &lt;miya.hideki@nifty.com&gt;</dc:creator><title>ASP.NETでのデータベース検索ページの作成に役立つ13のヒント</title><link>http://blogs.wankuma.com/trapemiya/archive/2007/07/05/83798.aspx</link><pubDate>Thu, 05 Jul 2007 11:30:00 GMT</pubDate><guid>http://blogs.wankuma.com/trapemiya/archive/2007/07/05/83798.aspx</guid><wfw:comment>http://blogs.wankuma.com/trapemiya/comments/83798.aspx</wfw:comment><comments>http://blogs.wankuma.com/trapemiya/archive/2007/07/05/83798.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.wankuma.com/trapemiya/comments/commentRss/83798.aspx</wfw:commentRss><trackback:ping>http://blogs.wankuma.com/trapemiya/services/trackbacks/83798.aspx</trackback:ping><description>&lt;P&gt;&lt;A href="http://codezine.jp/a/article/aid/1444.aspx"&gt;http://codezine.jp/a/article/aid/1444.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;ひろえむさんの記事で知りました。&lt;BR&gt;&lt;A href="http://blogs.wankuma.com/hirom/archive/2007/07/04/83678.aspx"&gt;http://blogs.wankuma.com/hirom/archive/2007/07/04/83678.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;ASP.NETがタイトルに付いていますが、SQL Server2005の新機能を使ったデータ処理の仕方が参考になります。&lt;BR&gt;そこだけでもつまんで読むと良いと思います。&lt;/P&gt;&lt;img src ="http://blogs.wankuma.com/trapemiya/aggbug/83798.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>trapemiya &lt;miya.hideki@nifty.com&gt;</dc:creator><title>小野さんのブログで「ASP.NET の仕組み」が公開されています。</title><link>http://blogs.wankuma.com/trapemiya/archive/2007/06/19/81256.aspx</link><pubDate>Tue, 19 Jun 2007 11:41:00 GMT</pubDate><guid>http://blogs.wankuma.com/trapemiya/archive/2007/06/19/81256.aspx</guid><wfw:comment>http://blogs.wankuma.com/trapemiya/comments/81256.aspx</wfw:comment><comments>http://blogs.wankuma.com/trapemiya/archive/2007/06/19/81256.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.wankuma.com/trapemiya/comments/commentRss/81256.aspx</wfw:commentRss><trackback:ping>http://blogs.wankuma.com/trapemiya/services/trackbacks/81256.aspx</trackback:ping><description>&lt;P&gt;いやぁ、素晴らしいの一言です。参りました。ASP.NETの脱初心者を目指す方には必読です。&lt;BR&gt;本を出したら売れるんじゃないかと思います。その際は買わせていただきます。&lt;/P&gt;
&lt;P&gt;&lt;A href="http://dotnetfan.org/blogs/dotnetfanblog/archive/2007/06/18/2591.aspx"&gt;http://dotnetfan.org/blogs/dotnetfanblog/archive/2007/06/18/2591.aspx&lt;/A&gt;&lt;/P&gt;&lt;img src ="http://blogs.wankuma.com/trapemiya/aggbug/81256.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>trapemiya &lt;miya.hideki@nifty.com&gt;</dc:creator><title>Professional ASP.NET 2.0 AJAX</title><link>http://blogs.wankuma.com/trapemiya/archive/2007/06/04/79324.aspx</link><pubDate>Mon, 04 Jun 2007 11:06:00 GMT</pubDate><guid>http://blogs.wankuma.com/trapemiya/archive/2007/06/04/79324.aspx</guid><wfw:comment>http://blogs.wankuma.com/trapemiya/comments/79324.aspx</wfw:comment><comments>http://blogs.wankuma.com/trapemiya/archive/2007/06/04/79324.aspx#Feedback</comments><slash:comments>5</slash:comments><wfw:commentRss>http://blogs.wankuma.com/trapemiya/comments/commentRss/79324.aspx</wfw:commentRss><trackback:ping>http://blogs.wankuma.com/trapemiya/services/trackbacks/79324.aspx</trackback:ping><description>&lt;P&gt;日本のamazonでも予約できるみたいです。でも、私が読むのは当分先になりそう。ただ、下期にはSilverLightやAjaxを使ったホームページの一部リニューアルもこっそり考えています。とりあえずXBAPも動かしたいし。&lt;/P&gt;
&lt;P&gt;Professional ASP.NET 2.0 AJAX&lt;BR&gt;&lt;A href="http://www.wrox.com/WileyCDA/WroxTitle/productCd-0470109629.html"&gt;http://www.wrox.com/WileyCDA/WroxTitle/productCd-0470109629.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src ="http://blogs.wankuma.com/trapemiya/aggbug/79324.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>trapemiya &lt;miya.hideki@nifty.com&gt;</dc:creator><title>ASP.NET Forumsが新しくなったけど、エラーが出まくってますね・・・</title><link>http://blogs.wankuma.com/trapemiya/archive/2007/05/18/77244.aspx</link><pubDate>Fri, 18 May 2007 11:25:00 GMT</pubDate><guid>http://blogs.wankuma.com/trapemiya/archive/2007/05/18/77244.aspx</guid><wfw:comment>http://blogs.wankuma.com/trapemiya/comments/77244.aspx</wfw:comment><comments>http://blogs.wankuma.com/trapemiya/archive/2007/05/18/77244.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.wankuma.com/trapemiya/comments/commentRss/77244.aspx</wfw:commentRss><trackback:ping>http://blogs.wankuma.com/trapemiya/services/trackbacks/77244.aspx</trackback:ping><description>&lt;P&gt;ASP.NET Forumsがリニューアルしたようですが、やたらと「Oops something went wrong!」が表示される。がんばれ！&lt;BR&gt;&lt;A href="http://forums.asp.net/"&gt;http://forums.asp.net/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src ="http://blogs.wankuma.com/trapemiya/aggbug/77244.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>