Exit Do Exit For Exit Function Exit Property Exit Sub
Sample
<%@ Page Language="VB" %>
<script runat="server">
Sub Page_Load(sender As Object, e As EventArgs)
Dim i As Integer
i = 0
Do
i = i + 1
Response.write("www.ThaiCreate.Com<br>")
If i = 3 Then
Exit Do
End IF
Loop While i <= 5
End Sub
</script>