home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _8e6d5ae36ed6390bc2acf2fa109e86f2 < prev    next >
Text File  |  2000-03-15  |  1KB  |  52 lines

  1. <%@ LANGUAGE = PerlScript%>
  2. <HTML>
  3. <HEAD>
  4. <!-- 
  5.     Copyright (c) 1996, Microsoft Corporation.  All rights reserved.
  6.     Developed by ActiveState Internet Corp., http://www.ActiveState.com
  7. -->
  8. <TITLE>Active Server Pages - Perl Version</title>
  9. </HEAD>
  10. <BODY>
  11. <BODY BGCOLOR=#FFFFFF>
  12.  
  13. <!-- 
  14.     ActiveState PerlScript sample 
  15.     PerlScript:  The coolest way to program custom web solutions. 
  16. -->
  17.  
  18. <!-- Masthead -->
  19. <TABLE CELLPADDING=3 BORDER=0 CELLSPACING=0>
  20. <TR VALIGN=TOP ><TD WIDTH=400>
  21. <A NAME="TOP"><IMG SRC="PSBWlogo.gif" WIDTH=400 HEIGHT=48 ALT="ActiveState PerlScript" BORDER=0></A><P>
  22. </TD></TR></TABLE>
  23.  
  24. <HR>
  25.  
  26. <H3>Active Server Session Object</H3>
  27. <br>
  28. <%
  29.     # get the value associated with 'MyVar'
  30.     $varReturn = $Session->{'MyVar'};
  31.  
  32.     # let the user know what the value of the variable is
  33.     $Response->write("The value of the session variable MyVar is $varReturn");
  34. %>
  35.  
  36. <!-- +++++++++++++++++++++++++++++++++++++
  37. here is the standard showsource link - 
  38.     Note that PerlScript must be the default language --> <hr>
  39. <%
  40.     $url = $Request->ServerVariables('PATH_INFO')->item;
  41.     $_ = $Request->ServerVariables('PATH_TRANSLATED')->item;
  42.     s/[\/\\](\w*\.asp\Z)//m;
  43.     $params = 'filename='."$1".'&URL='."$url";
  44.     $params =~ s#([^a-zA-Z0-9&_.:%/-\\]{1})#uc '%' . unpack('H2', $1)#eg;
  45. %>
  46. <A HREF="index.htm"> Return </A>
  47. <A HREF="showsource.asp?<%=$params%>">
  48. <h4><i>view the source</i></h4></A>  
  49.  
  50. </BODY>
  51. </HTML>
  52.