2007-10-19から1日間の記事一覧

web.config や app.config の内容へアクセスする方法

忘れやすいので箇条書きでメモします。 System.Configuration.ConfigurationManager.ConnectionStrings["SourceName"].ConnectionString global::DataAccessNamespace.Properties.Settings.Default.SourceName System.Web.Configuration.WebConfigurationMan…

ユーザコントロール (ASP.NET) を動的に作成

ASP.NET でユーザコントロール (UserControl) を動的に作成するには、 LoadControl() を使用します。通常のやり方 (new) では、作成できないので注意が必要です。 DateTextBox control = (DateTextBox)LoadControl("~/UserControl/DateTextBox.ascx");

Windows Forms のカスタムコントロール

Windows Forms でカスタムコントロールを作成するには、 MSDN (Custom Windows Forms Controls: ColorPicker.NET) が参考になります。目次からたどれる同階層のドキュメントにも、有用な情報が多く掲載されています。

データバインディングの構文メモ

ASP.NET で使用できるデータバインディングの構文をメモしておきます。 15 Seconds : Simplified and Extended Data Binding Syntax in ASP.NET 2.0 の情報がまとまっていて参考になります。 <%# Container.DataItem("expression") %> <asp:Label id="label1" runat="server" Text='<%# Container.DataItem("CustomerName") %>' /> <%# DataBinder.Eval(</asp:label>…