home *** CD-ROM | disk | FTP | other *** search
- <%
- /*=====================================================================
- File: Preferences.aspx
-
- Summary: Brief summary of the file contents and purpose.
-
- ---------------------------------------------------------------------
- This file is part of the Microsoft NGWS SDK Code Samples.
-
- Copyright (C) 2000-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" %>
- <%@ Import Namespace="System.IO" %>
- <%@ Import Namespace="LangUtil" %>
-
- <Script runat=server>
- // Use Page_Load as the main for the Web request.
-
- void Page_Load(Object sender, EventArgs EvArgs){
- Response.Write("Here are your current viewing settings:");
- Response.Write("<BR>Click <A HREF=\"\" onclick=\"TurnEmOn()\">here </A> to display privates.");
- }
-
-
-
- </Script>
- <Script language="JavaScript1.1>
- function TurnEmOn(){
- parent.document.all.classID["InAccessible"].style.display = "block";
-
- }
- </Script>
- <HTML>
- <Head>
- <!-- non breaking spaces shove the "Microsoft Internet Explorer" off the title bar. -->
- <title>Choose what elements to display. </title>
- <style type="text/css">
- @import url(backSDK4.css);
- </style>
-
- </Head>
- <BODY>
-
- <BODY>
-
- </HTML>
-