At the start of session 2 we talked a little bit about Do loops.
* There are 2 types of Do loops - Do Until and Do While.
* Each of these can be either Top Controlled or Bottom Controlled, e.g.
TOP Controlled:
Do Until 1 To 10
'Body
Next
BOTTOM Controlled:
Do
'Body
Loop Until x = 10
* After this we worked through the Chapter 6 project - the Highway Radar Checkpoint program.
Element Naming Techniques in ASP.NET
15 years ago

No comments:
Post a Comment