File: highlight.asp.html

package info (click to toggle)
kf6-syntax-highlighting 6.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 47,568 kB
  • sloc: xml: 197,750; cpp: 12,850; python: 3,023; sh: 955; perl: 546; ruby: 488; pascal: 393; javascript: 161; php: 150; jsp: 132; lisp: 131; haskell: 124; ada: 119; ansic: 107; makefile: 96; f90: 94; ml: 85; cobol: 81; yacc: 71; csh: 62; erlang: 54; sql: 51; java: 47; objc: 37; awk: 31; asm: 30; tcl: 29; fortran: 18; cs: 10
file content (65 lines) | stat: -rw-r--r-- 7,732 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>highlight.asp</title>
<meta name="generator" content="KF5::SyntaxHighlighting - Definition (ASP) - Theme (Breeze Light)"/>
</head><body style="background-color:#ffffff;color:#1f1c1b"><pre>
<span style="color:#0057ae;font-weight:bold">&lt;%</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>
<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> &lt;= <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> &lt;= <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> &lt;= <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> &lt;= <span style="color:#b08000">0</span> <span style="color:#006e28">)</span> <span style="font-weight:bold">then</span>
	<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">&amp;</span> <span style="color:#bf0303">"?"</span> <span style="font-weight:bold">&amp;</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>
<span style="font-weight:bold">end if</span>

<span style="font-weight:bold">function</span> countRecords<span style="color:#006e28">(</span> rsToCount <span style="color:#006e28">)</span>
	numRecs = <span style="color:#b08000">0</span>

	<span style="font-weight:bold">do</span> <span style="font-weight:bold">until</span> rsToCount.<span style="font-weight:bold">eof</span>
		numRecs = numRecs + <span style="color:#b08000">1</span>

		rsToCount.<span style="font-weight:bold">movenext</span>
	<span style="font-weight:bold">loop</span>

	rsToCount.<span style="font-weight:bold">close</span> <span style="color:#898887">' just to make sure nobody</span>
		<span style="color:#898887">' tries to operate on the recordset,</span>
		<span style="color:#898887">' which has already reached eof</span>

	countRecords = numRecs
<span style="font-weight:bold">end function</span>

<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>
	<span style="font-weight:bold">dim</span> sorted<span style="color:#006e28">()</span>

	<span style="font-weight:bold">redim</span> sorted<span style="color:#006e28">(</span><span style="color:#b08000">1</span><span style="color:#006e28">)</span>
	<span style="font-weight:bold">dim</span> i
	i = <span style="color:#b08000">0</span>
	<span style="font-weight:bold">do</span> <span style="font-weight:bold">until</span> rs.<span style="font-weight:bold">eof</span>
		<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>
			<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>
			sorted<span style="color:#006e28">(</span>i<span style="color:#006e28">)</span> = rs<span style="color:#006e28">(</span>sortColumn<span style="color:#006e28">)</span>
		 	i = i + <span style="color:#b08000">1</span>
		<span style="font-weight:bold">end if</span>
		rs.<span style="font-weight:bold">MoveNext</span>
	<span style="font-weight:bold">loop</span>

	<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>

	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>

	unique = sorted
<span style="font-weight:bold">end function</span>

<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>
	<span style="font-weight:bold">dim</span> newVar

	newVar = variable

	<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>
		<span style="color:#644a9b">response</span>.<span style="color:#644a9b">end</span>
	<span style="font-weight:bold">else</span> <span style="color:#0057ae;font-weight:bold">%></span>

<span style="font-weight:bold">&lt;p></span>We are writing text.<span style="font-weight:bold">&lt;/p></span>
<span style="font-weight:bold">&lt;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">&lt;%</span>=newVar<span style="color:#0057ae;font-weight:bold">%></span><span style="font-weight:bold">&lt;/p></span>
<span style="font-weight:bold">&lt;p></span>We have written text and outputted a variable.<span style="font-weight:bold">&lt;/p></span>

<span style="color:#0057ae;font-weight:bold">&lt;%</span> 	<span style="font-weight:bold">end if</span>
<span style="font-weight:bold">end sub</span> <span style="color:#0057ae;font-weight:bold">%></span>
</pre></body></html>