forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlocks.vb
More file actions
255 lines (138 loc) · 5.19 KB
/
Copy pathBlocks.vb
File metadata and controls
255 lines (138 loc) · 5.19 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
'------------------------------------------------------------------------------
' <auto-generated>
' This code was generated by a tool.
' Runtime Version:N.N.NNNNN.N
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
' </auto-generated>
'------------------------------------------------------------------------------
Option Strict Off
Option Explicit On
Imports System
Namespace TestOutput
Public Class Blocks
Public Sub New()
MyBase.New
End Sub
Public Overrides Sub Execute()
#ExternalSource("Blocks.vbhtml",1)
Dim i as Integer = 1
#End ExternalSource
WriteLiteral(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",5)
While i <= 10
#End ExternalSource
WriteLiteral(" ")
WriteLiteral("<p>Hello from VB.Net, #")
#ExternalSource("Blocks.vbhtml",6)
Write(i)
#End ExternalSource
WriteLiteral("</p>"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",7)
i += 1
End While
#End ExternalSource
WriteLiteral(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",10)
If i = 11 Then
#End ExternalSource
WriteLiteral(" ")
WriteLiteral("<p>We wrote 10 lines!</p>"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",12)
End If
#End ExternalSource
WriteLiteral(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",14)
Do
#End ExternalSource
WriteLiteral(" ")
WriteLiteral("<p>Hello again: ")
#ExternalSource("Blocks.vbhtml",15)
Write(i)
#End ExternalSource
WriteLiteral("</p>"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",16)
i -= 1
Loop While i > 0
#End ExternalSource
WriteLiteral(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",19)
Select Case i
Case 11
#End ExternalSource
WriteLiteral(" ")
WriteLiteral("<p>No really, we wrote 10 lines!</p>"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",22)
Case Else
#End ExternalSource
WriteLiteral(" ")
WriteLiteral("<p>We wrote a bunch more lines too!</p>"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",24)
End Select
#End ExternalSource
WriteLiteral(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",26)
For j as Integer = 1 to 10 Step 2
#End ExternalSource
WriteLiteral(" ")
WriteLiteral("<p>Hello again from VB.Net, #")
#ExternalSource("Blocks.vbhtml",27)
Write(j)
#End ExternalSource
WriteLiteral("</p>"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",28)
Next j
#End ExternalSource
WriteLiteral(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",30)
Try
#End ExternalSource
WriteLiteral(" ")
WriteLiteral("<p>That time, we wrote 5 lines!</p>"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",32)
Catch ex as Exception
#End ExternalSource
WriteLiteral(" ")
WriteLiteral("<p>Oh no! An error occurred: ")
#ExternalSource("Blocks.vbhtml",33)
Write(ex.Message)
#End ExternalSource
WriteLiteral("</p>"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",34)
End Try
#End ExternalSource
WriteLiteral(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",36)
With i
#End ExternalSource
WriteLiteral(" ")
WriteLiteral("<p>i is now ")
#ExternalSource("Blocks.vbhtml",37)
Write(.ToString())
#End ExternalSource
WriteLiteral("</p>"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",38)
End With
#End ExternalSource
WriteLiteral(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",40)
SyncLock New Object()
#End ExternalSource
WriteLiteral(" ")
WriteLiteral("<p>This block is locked, for your security!</p>"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",42)
End SyncLock
#End ExternalSource
WriteLiteral(""&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",44)
Using New System.IO.MemoryStream()
#End ExternalSource
WriteLiteral(" ")
WriteLiteral("<p>Some random memory stream will be disposed after rendering this block</p>"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))
#ExternalSource("Blocks.vbhtml",46)
End Using
#End ExternalSource
End Sub
End Class
End Namespace