2008-03-21から1日間の記事一覧

C#で書いてみました。

<%@ PAGE LANGUAGE="C#" AutoEventWireup="false" Inherits="Test" Src="sample.aspx.cs" %> <html> <body> <asp:Label id="l1" runat="server" /> <br> <asp:Label id="l2" runat="server" /> </body> </html> using System; using System.Web.UI; using System.Web.UI.WebControls; public class Test : Page { protected…

VBで書いてみました。

<%@ PAGE LANGUAGE="VB" AutoEventWireup="false" Inherits="Test" Src="sample.aspx.vb" %> <html> <body> <asp:Label id="l1" runat="server" /> <br> <asp:Label id="l2" runat="server" /> </body> </html> imports System imports System.Web.UI imports System.Web.UI.WebControls public class Test Inherits Page p…

ASP.NETを使ってみよう No4

Meadow (矩形処理) この機能を探してたんですよねw リージョンを選択してから、下記の操作! C-x r o : 矩形領域だけスペースを確保する (open-rectangle) C-x r c : 矩形領域を消去する.スペースは確保. (clear-rectangle) C-x r d : 矩形領域を消去する…