home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 40 / IOPROG_40.ISO / SOFT / NETFrameworkSDK.exe / comsdk.cab / samples.exe / ClsView / popup_find.aspx < prev    next >
Encoding:
ASP.NET Web Form  |  2000-06-23  |  705 b   |  37 lines

  1. <%@ Page Language="C#" %>        
  2. <HTML>
  3.     <HEAD>
  4.         <style type="text/css">
  5.          @import url(backSDK4.css);
  6.         </style>
  7.         <Title>ClassView: Search</Title>
  8.    </HEAD>
  9.  
  10.    <Script Language="JavaScript1.1">
  11.  
  12.         function CloseWindow(){
  13.             window.close();
  14.         }
  15.    </Script>
  16.    <Body>
  17.     <!--BEGIN SEARCH BOX HERE-->
  18.     
  19.     <p><H2>Search</H2></P> 
  20.     <form ID="Fred" target="main" onsubmit="CloseWindow()" action="browser.aspx" runat="server">
  21.         <input 
  22.             id="ThisClass"
  23.             value=System.Object
  24.             type=text
  25.             size=32
  26.             accesskey="l"
  27.             runat="server"/>
  28.              
  29.             <input type="submit" value="Find this class" runat="server"/>
  30.     
  31.     </form>
  32.  
  33.     <!--END SEARCH BOX HERE-->
  34.    </Body>
  35. </HTML>
  36.                 
  37.