home *** CD-ROM | disk | FTP | other *** search
ASP.NET Web Form | 2000-06-23 | 1.5 KB | 55 lines |
- <%@ Page Language="C#" %>
-
- <%@ Import Namespace="System" %>
- <%@ Import Namespace="System.IO" %>
- <%@ Import Namespace="System.Collections" %>
- <%@ Import Namespace="System.Data" %>
- <%@ Import Namespace="System.Data.XML" %>
- <%@ Import Namespace="System.Data.XML.DOM" %>
-
- <Script runat="server">
-
- void Page_Load(object sender, EventArgs Ev){
-
- }
-
- private void WriteInnards(){
-
- ArrayList AssemblyStrings = (ArrayList)(Session["Assems"]);
- AssemblyStrings.Sort();
- for (int i = 0; i < AssemblyStrings.Count; ++i){
- if (i == 0){
- Response.Write("<FORM method=\"POST\" onsubmit=\"javascript:window.close();\" action=\"toc.aspx\" target=\"menu\" Name=\"RemoveForm\" ID=\"RemoveForm\">");
- }
- Response.Write("\r\n<INPUT Name=\"Remove\" Type=\"Checkbox\" Value=\"" + AssemblyStrings[i] + "\"/><SPAN Class=\"RemoveItem\">" + AssemblyStrings[i] + "</SPAN><BR>");
- if (i == AssemblyStrings.Count - 1){
- Response.Write("<BR><input class=btnClass type=submit Name=OKBtn Value=\"OK\"/>");
- Response.Write("<input class=btnClass type=button Name=CancelBtn Value=\"Cancel\" onclick=\"javascript:window.close()\">");
-
- Response.Write("</FORM>");
- }
- }
- }
-
- </Script>
-
-
- <HTML>
- <HEAD>
- <style type="text/css">
- @import url(backSDK4.css);
- BODY{
- margin-left:-15;
- }
- </style>
- <Title>ClassView: Remove Library</Title>
- </HEAD>
- <Body>
- Select the libraries you want to remove from the view pane and press ENTER.<BR>
-
- <%WriteInnards();%>
-
- </Body>
- </HTML>
-
-