home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 40 / IOPROG_40.ISO / SOFT / NETFrameworkSDK.exe / comsdk.cab / samples.exe / ClsView / popup_add.aspx < prev    next >
Encoding:
Text File  |  2000-06-23  |  2.3 KB  |  73 lines

  1. <%
  2. /*=====================================================================
  3.   File:      popup_add.aspx
  4.  
  5.   Summary:   
  6.  
  7. ---------------------------------------------------------------------
  8.   This file is part of the Microsoft NGWS SDK Code Samples.
  9.  
  10.   Copyright (C) 2000 Microsoft Corporation.  All rights reserved.
  11.  
  12. This source code is intended only as a supplement to Microsoft
  13. Development Tools and/or on-line documentation.  See these other
  14. materials for detailed information regarding Microsoft code samples.
  15.  
  16. THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  17. KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  18. IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  19. PARTICULAR PURPOSE.
  20. =====================================================================*/
  21.  
  22. %>
  23.  
  24. <%@ Page Language="C#" %>
  25.  
  26. <script runat="server">
  27. void Page_Load(object sender, EventArgs EvArgs){
  28.  
  29.  
  30.  
  31. }
  32. </Script>
  33.  
  34. <HTML>
  35.     <HEAD>
  36.         <style type="text/css">
  37.          @import url(backSDK4.css);
  38.         </style>
  39.         <Title>ClassView: Add Library</Title>
  40.     
  41.     <Script Language="JavaScript1.1">
  42.         function KillWindow(){
  43.             window.close();    
  44.         }
  45.         function ShowBrowser(){
  46.             KillWindow();
  47.             window.open("FileBrowser.aspx", "FileBrowser", "width=300, height=500, scrollbars=yes, resizable=yes");
  48.         }
  49.  
  50.     </Script>
  51.    </HEAD>
  52.    <Body>
  53.         
  54. <P>Enter either the Assembly name, or the full path to the file you want to load.
  55. If you don't know the path, click <SPAN title="Click here to choose your library by navigating your computer's file system with a file browser." id=FileBrowseLink class=NavLink onclick="ShowBrowser()" onmouseout="this.style.color='blue'" 
  56.       onmouseover="this.style.color='brown'" style="color: blue; CURSOR: hand"><U>B</U>rowse...</SPAN> to open a file browser.</P>
  57.     <form name="explore" onsubmit="window.close()" target="menu" action="toc.aspx" runat="server">
  58.         <input 
  59.             runat="server"
  60.             id="Add"
  61.             value=""
  62.             type=text
  63.             size=80
  64.             accesskey="l"
  65.         />
  66.         <input id=FindBtn class=btnClass type=submit Name=FindBtn Value="Find..." runat="server"/>
  67.     </form> <A HREF="" Title="Click here to close this window and return to the class viewer sample." class=ControlLink onclick='KillWindow()'>Close this window.</A> 
  68.     
  69.  
  70.    </Body>
  71. </HTML>
  72.                 
  73.