File indexing completed on 2025-02-02 03:54:44
0001 <!DOCTYPE html> 0002 <html><head> 0003 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> 0004 <title>highlight.asp</title> 0005 <meta name="generator" content="KF5::SyntaxHighlighting - Definition (ASP) - Theme (Breeze Light)"/> 0006 </head><body style="background-color:#ffffff;color:#1f1c1b"><pre> 0007 <span style="color:#0057ae;font-weight:bold"><%</span> <span style="color:#898887">'</span><span style="color:#ca60ca">kate:</span><span style="color:#898887"> </span><span style="color:#0095ff">hl</span><span style="color:#bf0303"> ASP</span><span style="color:#0095ff">;</span> 0008 <span style="font-weight:bold">if</span> <span style="color:#006e28">(</span> <span style="color:#644a9b">instr</span><span style="color:#006e28">(</span><span style="color:#644a9b">request</span>.<span style="color:#644a9b">servervariables</span><span style="color:#006e28">(</span><span style="color:#bf0303">"PATH_INFO"</span><span style="color:#006e28">),</span><span style="color:#bf0303">"login.asp"</span><span style="color:#006e28">)</span> <= <span style="color:#b08000">0</span> <span style="font-weight:bold">and</span> <span style="color:#644a9b">instr</span><span style="color:#006e28">(</span><span style="color:#644a9b">request</span>.<span style="color:#644a9b">servervariables</span><span style="color:#006e28">(</span><span style="color:#bf0303">"PATH_INFO"</span><span style="color:#006e28">),</span><span style="color:#bf0303">"inset"</span><span style="color:#006e28">)</span> <= <span style="color:#b08000">0</span> <span style="font-weight:bold">and</span> <span style="color:#644a9b">instr</span><span style="color:#006e28">(</span><span style="color:#644a9b">request</span>.<span style="color:#644a9b">servervariables</span><span style="color:#006e28">(</span><span style="color:#bf0303">"PATH_INFO"</span><span style="color:#006e28">),</span><span style="color:#bf0303">"Data"</span><span style="color:#006e28">)</span> <= <span style="color:#b08000">0</span> <span style="font-weight:bold">and</span> <span style="color:#644a9b">instr</span><span style="color:#006e28">(</span><span style="color:#644a9b">request</span>.<span style="color:#644a9b">servervariables</span><span style="color:#006e28">(</span><span style="color:#bf0303">"PATH_INFO"</span><span style="color:#006e28">),</span><span style="color:#bf0303">"dropDown"</span><span style="color:#006e28">)</span> <= <span style="color:#b08000">0</span> <span style="color:#006e28">)</span> <span style="font-weight:bold">then</span> 0009 <span style="color:#644a9b">Session</span><span style="color:#006e28">(</span><span style="color:#bf0303">"originalRequestedPage"</span><span style="color:#006e28">)</span> = <span style="color:#644a9b">Request</span>.<span style="color:#644a9b">ServerVariables</span><span style="color:#006e28">(</span><span style="color:#bf0303">"PATH_INFO"</span><span style="color:#006e28">)</span> <span style="font-weight:bold">&</span> <span style="color:#bf0303">"?"</span> <span style="font-weight:bold">&</span> <span style="color:#644a9b">Request</span>.<span style="color:#644a9b">ServerVariables</span><span style="color:#006e28">(</span><span style="color:#bf0303">"QUERY_STRING"</span><span style="color:#006e28">)</span> 0010 <span style="font-weight:bold">end if</span> 0011 0012 <span style="font-weight:bold">function</span> countRecords<span style="color:#006e28">(</span> rsToCount <span style="color:#006e28">)</span> 0013 numRecs = <span style="color:#b08000">0</span> 0014 0015 <span style="font-weight:bold">do</span> <span style="font-weight:bold">until</span> rsToCount.<span style="font-weight:bold">eof</span> 0016 numRecs = numRecs + <span style="color:#b08000">1</span> 0017 0018 rsToCount.<span style="font-weight:bold">movenext</span> 0019 <span style="font-weight:bold">loop</span> 0020 0021 rsToCount.<span style="font-weight:bold">close</span> <span style="color:#898887">' just to make sure nobody</span> 0022 <span style="color:#898887">' tries to operate on the recordset,</span> 0023 <span style="color:#898887">' which has already reached eof</span> 0024 0025 countRecords = numRecs 0026 <span style="font-weight:bold">end function</span> 0027 0028 <span style="font-weight:bold">function</span> unique<span style="color:#006e28">(</span> rs<span style="color:#006e28">,</span> sortColumn <span style="color:#006e28">)</span> <span style="color:#898887">' return unique instances of text in sortColumn within rs</span> 0029 <span style="font-weight:bold">dim</span> sorted<span style="color:#006e28">()</span> 0030 0031 <span style="font-weight:bold">redim</span> sorted<span style="color:#006e28">(</span><span style="color:#b08000">1</span><span style="color:#006e28">)</span> 0032 <span style="font-weight:bold">dim</span> i 0033 i = <span style="color:#b08000">0</span> 0034 <span style="font-weight:bold">do</span> <span style="font-weight:bold">until</span> rs.<span style="font-weight:bold">eof</span> 0035 <span style="font-weight:bold">if</span> <span style="color:#006e28">(</span><span style="font-weight:bold">not</span> find<span style="color:#006e28">(</span> rs<span style="color:#006e28">(</span>sortColumn<span style="color:#006e28">),</span> sorted <span style="color:#006e28">))</span> <span style="font-weight:bold">then</span> 0036 <span style="font-weight:bold">redim</span> <span style="font-weight:bold">preserve</span> sorted<span style="color:#006e28">(</span>i+<span style="color:#b08000">1</span><span style="color:#006e28">)</span> 0037 sorted<span style="color:#006e28">(</span>i<span style="color:#006e28">)</span> = rs<span style="color:#006e28">(</span>sortColumn<span style="color:#006e28">)</span> 0038 i = i + <span style="color:#b08000">1</span> 0039 <span style="font-weight:bold">end if</span> 0040 rs.<span style="font-weight:bold">MoveNext</span> 0041 <span style="font-weight:bold">loop</span> 0042 0043 <span style="font-weight:bold">redim</span> <span style="font-weight:bold">preserve</span> sorted<span style="color:#006e28">(</span>i-<span style="color:#b08000">1</span><span style="color:#006e28">)</span> <span style="color:#898887">' the function will add an extra blank entry to the array</span> 0044 0045 rs.<span style="font-weight:bold">Close</span> <span style="color:#898887">' close the recordset - we'll be using it again - and reset i - well be using it again, too</span> 0046 0047 unique = sorted 0048 <span style="font-weight:bold">end function</span> 0049 0050 <span style="font-weight:bold">sub</span> testSub<span style="color:#006e28">(</span> variable <span style="color:#006e28">)</span> <span style="color:#898887">' do nothing impressive...</span> 0051 <span style="font-weight:bold">dim</span> newVar 0052 0053 newVar = variable 0054 0055 <span style="font-weight:bold">if</span> <span style="color:#006e28">(</span> variable = <span style="font-weight:bold">true</span> <span style="color:#006e28">)</span> 0056 <span style="color:#644a9b">response</span>.<span style="color:#644a9b">end</span> 0057 <span style="font-weight:bold">else</span> <span style="color:#0057ae;font-weight:bold">%></span> 0058 0059 <span style="font-weight:bold"><p></span>We are writing text.<span style="font-weight:bold"></p></span> 0060 <span style="font-weight:bold"><p</span><span style="color:#006e28"> class=</span><span style="color:#bf0303">"stuff"</span><span style="font-weight:bold">></span><span style="color:#0057ae;font-weight:bold"><%</span>=newVar<span style="color:#0057ae;font-weight:bold">%></span><span style="font-weight:bold"></p></span> 0061 <span style="font-weight:bold"><p></span>We have written text and outputted a variable.<span style="font-weight:bold"></p></span> 0062 0063 <span style="color:#0057ae;font-weight:bold"><%</span> <span style="font-weight:bold">end if</span> 0064 <span style="font-weight:bold">end sub</span> <span style="color:#0057ae;font-weight:bold">%></span> 0065 </pre></body></html>