ソース掲示板




すべてから検索

キーワード   条件 表示 現行ログ 過去ログ トピックス 名前 本文

  メンテナンス 前画面に戻る

対象スレッド 件名: サンプルコード
名前: lightbox
処理選択
パスワード

件名 サンプルコード
名前 lightbox
コメント
@DIV
<!-- #include file = "tree.inc" -->
<HTML>
<HEAD>
<META http-equiv="Content-type" content="text/html; charset=Shift_JIS">
<TITLE>HTML テンプレート</TITLE>
<STYLE type="text/css">
* {
	font-family: "MS Pゴシック";
	font-size: 12px;
}
BODY {
	background-color: white;
	color: black;
}
</STYLE>

<SCRIPT language="javascript" type="text/javascript">

<%
	Call InitializeTreeEnv()
	Call SetImageUrl( "image" )
	Call SetControlJs( )
%>

</SCRIPT>
<HEAD>
<%


Dim Tree

Tree = Tree & StartNode( "#", "ルートノード", "_self" )
Tree = Tree & AddLeaf( "http://www.google.co.jp/", "Google", "ActionWindow", False )
Tree = Tree & AddLeaf( "http://www.yahoo.co.jp/", "Yahoo", "ActionWindow", False )
Tree = Tree & AddLeaf( "http://www.google.co.jp/", "Google", "ActionWindow", False )
Tree = Tree & AddLeaf( "http://www.yahoo.co.jp/", "Yahoo", "ActionWindow", True )
Tree = Tree & EndNode( )

Tree = Tree & StartNode( "#", "ルートノード", "_self" )
Tree = Tree & AddLeaf( "http://www.google.co.jp/", "Google", "ActionWindow", False )
Tree = Tree & AddLeaf( "http://www.yahoo.co.jp/", "Yahoo", "ActionWindow", False )

	Tree = Tree & StartNode( "#", "ノード", "_self" )
	Tree = Tree & AddLeaf( "http://www.google.co.jp/", "Google", "ActionWindow", False )
	Tree = Tree & AddLeaf( "http://www.google.co.jp/", "Google", "ActionWindow", False )


		Tree = Tree & StartNode( "#", "ノード", "_self" )
		Tree = Tree & AddLeaf( "http://www.google.co.jp/", "Google", "ActionWindow", False )
		Tree = Tree & AddLeaf( "http://www.yahoo.co.jp/", "Yahoo", "ActionWindow", False )
		Tree = Tree & AddLeaf( "http://www.google.co.jp/", "Google", "ActionWindow", False )
		Tree = Tree & AddLeaf( "http://www.google.co.jp/", "Google", "ActionWindow", True )
		Tree = Tree & EndNode( )


	Tree = Tree & AddLeaf( "http://www.google.co.jp/", "Google", "ActionWindow", False )
	Tree = Tree & AddLeaf( "http://www.yahoo.co.jp/", "Yahoo", "ActionWindow", True )
	Tree = Tree & EndNode( )

Tree = Tree & AddLeaf( "http://www.google.co.jp/", "Google", "ActionWindow", False )
Tree = Tree & AddLeaf( "http://www.yahoo.co.jp/", "Yahoo", "ActionWindow", True )
Tree = Tree & EndNode( )

%>
<BODY>
<%= Tree %>

<IFRAME
	style='position:absolute;left:300px;top:15px;'
	src="iframe.htm"
	name="ActionWindow"
	frameborder="yes"
	scrolling="yes"
	width="650"
	height="500"
></IFRAME>

</BODY>
</HTML>
@END