This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%@Language="VBScript"%> | |
| <%Option Explicit%> | |
| <%Response.Buffer = True%> | |
| <% | |
| On Error Resume Next | |
| Dim strPath | |
| strPath = CStr(Request.QueryString("file")) | |
| '-- do some basic error checking for the QueryString | |
| If strPath = "" Then | |
| Response.Clear |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <a href="download.aspx?file=/images/logo.gif">Download the logo image</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%@Language="VBScript"%> | |
| <%Option Explicit%> | |
| <%Response.Buffer = True%> | |
| <% | |
| '-- set a 600 second timeout value in case it hangs | |
| Server.ScriptTimeOut = 600 | |
| On Error Resume Next | |
| Dim strRootFolder | |
| Dim intLenRootFolder |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sub DisplayNode(ByVal objNodes, ByRef iElement, ByRef sLeftIndent, ByRef sOpenFolders) | |
| ... | |
| 'Ignore NODE_TEXT node types | |
| If oNode.nodeType = NODE_ELEMENT Then | |
| sNodeType = oNode.nodeName | |
| sAttrValue = oNode.getAttribute("name") | |
| sURL = Server.URLEncode(oNode.getAttribute("path")) | |
| ... | |
| 'Now display the document node | |
| %> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%@ Page Language="VB" runat="server" explicit="true" strict="true" %> | |
| <%@ Register TagPrefix="UserControl" TagName="Header" Src="head.ascx" %> | |
| <%@ Register TagPrefix="UserControl" TagName="Footer" Src="tail.ascx" %> | |
| <%@ Import Namespace="System.Web.Mail" %> | |
| ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%@Language="VBScript"%> | |
| <%Option Explicit%> | |
| <%Response.Buffer = True%> | |
| <% | |
| Dim objFso | |
| Dim objFolder | |
| Dim lngSize 'size of the folder and its contents | |
| Dim folderPath 'virtual or physical path of the folder | |
| Set objFso = Server.CreateObject("Scripting.FileSystemObject") | |
| objFolder = objFso.GetFolder(folderPath) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ... | |
| //color all rows when the main checkbox is clicked | |
| function checkAll(form) { | |
| var thisNumRowsSelected = 0; | |
| var isChecked = document.all.cbxSelectAll.checked; | |
| for (var i=0; i < form.elements.length; i++) { | |
| if (form.elements[i].name.indexOf('_ctl') > -1) { | |
| var curElement = form.elements[i]; | |
| if (isChecked) { | |
| curElement.checked = true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <configuration> | |
| <system.web> | |
| <processModel | |
| enable="true" | |
| timeout="Infinite" | |
| idleTimeout="Infinite" | |
| shutDownTimeout="00:00:05" | |
| requestLimit="Infinite" | |
| requestQueueLimit="5000" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%@ Page Language="vb" AutoEventWireup="false" Codebehind="default.aspx.vb" Inherits="DegreesWebService._default"%> | |
| <!DOCTYPE HTML PUBLIC "<em>-//W3C//DTD HTML 4.0 Transitional//EN"</em><em>></em> | |
| <HTML> | |
| <HEAD> | |
| <title>default</title> | |
| <meta name="GENERATOR" content="Microsoft Visual Studio.NET 7.0"> | |
| <meta name="CODE_LANGUAGE" content="Visual Basic 7.0"> | |
| <meta name="vs_defaultClientScript" content="JavaScript"> | |
| <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> | |
| </HEAD> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML PUBLIC "<em>-//W3C//DTD HTML 4.0 Transitional//EN"</em><em>></em> | |
| <html> | |
| <head> | |
| <style TYPE="text/css"> | |
| body { | |
| font-family: Verdana; | |
| font-size: 70%; | |
| } | |
| table tr td { | |
| font-family: Verdana; |