2013-07-01から1ヶ月間の記事一覧

年月日ばらばらのテキストボックス

年・月・日がばらばらのテキストボックスの、検証についてなど基本的な方針は、年・月・日の入力内容を結合するテキストボックスを作り その内容をCustomValidatorで検証する感じ。 .aspx側 <div> <asp:TextBox ID="TxtYear" runat="server" Width="60" class="DateTextBox" value=""></asp:TextBox>年 <asp:TextBox ID="TxtMonth" runat="server" Width="60" class="DateTextBox" value=""></asp:TextBox>月…</div>

distribute、setuptools

家の環境(ubuntu 12.04)のeasy_installがおかしくなった。 easy_install -U distribute実行するとこんなんなる。 (spam)xxxxxx@xxxxServer:~/ダウンロード$ easy_install python-mysql Traceback (most recent call last): File "/home/xxxxx/work/spam/bin/…

ASP.netのDataバインド

GridViewじゃなくて、普通の項目(例えばラベルとか)にDataSourceをバインドする場合、Repeaterを使う。 <asp:Repeater ID="Repeater1" runat="server" DataSourceID="SqlDataSource1"> <ItemTemplate> <asp:Label ID="Label2" runat="server" Text='<%# Eval("Name") %>'></asp:Label> </ItemTemplate> </asp:Repeater>