Visual Studio 2010 & .NET Framework 4.0

clock October 6, 2008 21:32 by author
次の Visual Studio と .NET Framework のバージョンは、Visual Studio 2010 と .NET Framework 4.0 になるとのこと。 気になるのは、.NET Framework 4.0 の CLR のバージョンがどうなるかですね。 [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


[C Sharp]DataSetのカラムで列挙型を扱うには

clock September 8, 2008 12:30 by author
型付DataSetのテーブルのカラムの型を、int ではなく、独自の列挙型にするには、2つの方法がある。 ひとつは、型付DataSetの定義を行う場合に列のデータ型を列挙型に指定する方法。 これは、デザイナー画面で、DataTypeプロパティの値を System.Int32 などから、独自の型 Gushwell.Genderなどを指定してあげればよい。 ドロップダウンリストには現れないので、手入力になる。 [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


[BookMark]ASP.NET の仕組み

clock September 2, 2008 12:15 by author
1.処理の開始と HttpContext ASP.NET を含む Web アプリケーションでは、ブラウザから Web サーバにリクエストが投げられることによって一回の処理が開始され、Web サーバがブラウザにHTMLを送り返すことで処理が終了します。Web アプリケーションはこのリクエスト単位の処理を何回も繰り返すことによって、一つのシステムとして動作しているのです。 そしてASP.NET では、Web サーバとして必ず IIS が動作しています。このため、ブラウザから投げられたリクエストをサーバ上でまず IIS が受け取ります。IIS は要求されているURL の拡張子を... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


LINQ to Objectで抽出と並び替え(List

clock August 27, 2008 15:14 by author
やっと最近LINQに触り始めて、今一番楽しいところなんで、自分がやってみたことをまとめていきたいと思います。 まぁ、まだまだこんなことができるんだぁ、と文法を追っているレベルなんで、たいしたことは書けないですが。 [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


Team Foundation ServerでのWCFサービスプロジェクトのリソース管理について

clock August 26, 2008 17:14 by author
WCFサービスプロジェクトのリソース管理について質問させていただきます。 VS2008からTeam Foundation Server上にソリューションを作成し、そこに他の開発用Webサーバーに対するWCFサービスプロジェクトを作成したところ、以下の経緯においてリソース管理対象とならなくなりました。 ・他の開発用WebサーバーにWCFサービスプロジェクトを作成しようとしたところ、FrontPage Server Extensionsが入っていないと怒られたので、FrontPage Server Extension 2002を入れた上で該当゜ロジェクトを作成。 ... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


[HowTo][Tips]TreeViewで現在のノードだけを展開する

clock August 26, 2008 09:52 by author
TreeViewで階層が深いSiteMapを表示しているとき、現在のページが含まれるノードだけを展開して表示したいということがあります。 [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


PowerShell-IPアドレスからホスト名を取得する

clock August 23, 2008 20:46 by author
PowerShellでIPアドレスからホスト名を取得する関数を作ってみました。 [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


ブレークポイントを設定する(PowerShell 入門)

clock August 9, 2008 13:00 by author
ブレークポイントの設定は、以外と簡単で $host.EnterNestedPrompt() をブレークポイントをかけたい場所に記述するだけです。 以前に紹介したスクリプトにブレークポイントを設定して実験してみたいと思います。(5行目に挿入しました。スクリプトはC:\Work\Debug.ps1として保存します) [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


Windows Live ID の Web 認証 SDK がリリースされました

clock July 9, 2008 00:04 by author
Windows Live ID の、いわゆる認証 API がリリースされました。これにより、独自の Web サイトで Windows Live ID を使った認証や、クライアントアプリケーションに Windows Live ID による認証を組み込むことができるようになります。 [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


ASP.NET MVC Tip #4 - Create a Custom Data Controller Base Class - Stephen Walther on ASP.NET MVC

clock July 7, 2008 21:45 by author
ASP.NET MVC Tip #4 - Create a Custom Data Controller Base Class - Stephen Walther on ASP.NET MVC [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


ASP.NET MVC の仕組み

clock April 22, 2008 10:34 by author
ASP.NET MVC Preview 2 はソースコードが公開されています。  参考:ASP.NET MVC のソースコードが利用可能に - ScottGuさんのブログ翻訳 このソースコードを参考に、ASP.NET MVC がどのような仕組みで実現されているかを調べてみました。 まずはリクエストを受けるところから。 UrlRoutingModuleがリクエストを受け取る Global.asax.csでRouteの初期化を行うときに設定するMvcRouteHandlerを通して、MvcHandlerが処理を行う対象として設定される ... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


[Tips]AjaxControlToolkit CalendarExtender を使用する

clock March 25, 2008 04:54 by author
[Tips]AjaxControlToolkit CalendarExtender を使用する [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


Visual Studio 2008 Web Deployment Projects 日本語版リリース

clock February 28, 2008 02:56 by author
Visual Studio 2008 Web Deployment Projects 日本語版リリース [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


[HTML][.NET][Java]URL指定方法

clock February 16, 2008 01:45 by author
サーバーが80番以外のポート番号を使用している場合(通常は80番です)は、次のようにします。 http://www.site.com:8080/html/attr/url.htm 同じサーバー上のファイルであれば、http://サーバ名 を省略することができます。 [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


[HowTo]WebシステムでOLEを利用してExcelファイルを出力する方法

clock January 28, 2008 08:36 by author
業務系Webシステムを構築していると確かに「Excelで出力して欲しい」と言う要望は多々あります。 その様な場合、多くの場合はMr.Tさんと同じくHTMLを使用する方法でExcelファイルを作成して参りました。 [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


Search

Calendar

<<  October 2008  >>
SuMoTuWeThFrSa
2829301234
567891011
12131415161718
19202122232425
2627282930311
2345678

Archive

Tags

Categories


Blogroll

    Disclaimer

    The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

    © Copyright 2008

    Sign in