home *** CD-ROM | disk | FTP | other *** search
- <%
- /*=====================================================================
- File: Toolbar.aspx
-
- Summary: Brief summary of the file contents and purpose.
-
- ---------------------------------------------------------------------
- This file is part of the Microsoft NGWS SDK Code Samples.
-
- Copyright (C) 2000 Microsoft Corporation. All rights reserved.
-
- This source code is intended only as a supplement to Microsoft
- Development Tools and/or on-line documentation. See these other
- materials for detailed information regarding Microsoft code samples.
-
- THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
- KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
- IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
- PARTICULAR PURPOSE.
- =====================================================================*/
-
- %>
-
- <%@ Page Language="C#"%>
- <%@ Import Namespace="System" %>
- <%@ Import Namespace="System.Reflection"%>
- <%@ Import Namespace="System.Collections"%>
-
- <Script runat="server">
-
-
- </Script>
-
-
- <html>
-
- <head>
- <SCRIPT language="JavaScript1.1">
-
- function AddLibrary()
- {
- window.open("popup_add.aspx",null, "height=150,width=600");
- }
-
- function RemoveLibrary()
- {
- // window.open("popup_remove.aspx",null,"Remove Library","height=600,width=200,scrollbars=yes,resizable=yes");
- window.open("popup_remove.aspx",null,"height=600,width=250,scrollbars=yes,toolbar=no,menubar=no,location=no");
-
- }
-
- function Srch()
- {
- window.open("popup_find.aspx", "Search", "width=400, height=100");
- }
-
-
- </SCRIPT>
-
- </head>
-
-
- <Body style="margin:0px;bgColor:#6699cc;">
- <TABLE bgColor=#6699cc border=0 cellPadding=0 cellSpacing=0 width="100%">
- <TBODY>
- <TR>
- <TD bgColor=#6699cc colSpan=4 height=20 noWrap vAlign=center><FONT
- color=#ffffff face="Verdana, Arial" size=1><B>
- <SPAN id=search onclick=Srch() onmouseout="search.style.color='white'"
- onmouseover="search.style.color='red'"
- style="CURSOR: hand">Search</SPAN> |
- <SPAN id=add onclick=AddLibrary() onmouseout="add.style.color='white'"
- onmouseover="add.style.color='red'" style="CURSOR: hand">Add
- Library</SPAN> |
- <SPAN id=remove onclick=RemoveLibrary() onmouseout="remove.style.color='white'"
- onmouseover="remove.style.color='red'" style="CURSOR: hand">Remove
- Library</SPAN> |
- </B></FONT></TD></TR></TBODY></TABLE>
-
-
- </body>
- </html>