web 2.0

VB.NET & While End While

VB.NET & While End While - While End While : Runs a series of statements as long as a given condition is True.

ShotDev Focus:
- VB.NET & While End While

Syntax


While condition
[ statements ]
[ Exit While ]
[ statements ]
End While

Example

AspNetWhileWend.aspx

<%@ Page Language="VB" %>
<script runat="server">
Sub Page_Load(sender As Object, e As EventArgs)

Dim i As Integer
i = 1
While i <= 5
Response.write("www.ShotDev.Com<br>")
i = i + 1
End While

End Sub
</script>

Screenshot

VB.NET & While End While
.
.
.
Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (No Ratings Yet)
Loading ... Loading ...

Leave a Reply

You must be logged in to post a comment.