Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > Question about For-Next

Reply
Thread Tools

Question about For-Next

 
 
kristofferorstadius@gmail.com
Guest
Posts: n/a
 
      01-30-2006
Hello,

I have a simple 'For Next'-code (see at the bottom).

In the middle of the loop I want an IF-statement, which (if it is true)
jump over to next level.

I thought I could solve it through simple just writing an IF-statement
and put Next in the middle, but an error message appears.

Do you know how I can solve it?

<%
For m = 0 To Ubound(minArray,2)

If Isnull(minArray(0,m)) or minArray(0,m) = "" Then
Next
End If

Response.Write "Hello world!"

Next
%>



Thank you!

Kristoffer

 
Reply With Quote
 
 
 
 
Bob Barrows [MVP]
Guest
Posts: n/a
 
      01-30-2006
wrote:
> Hello,
>
> I have a simple 'For Next'-code (see at the bottom).
>
> In the middle of the loop I want an IF-statement, which (if it is
> true) jump over to next level.
>
> I thought I could solve it through simple just writing an IF-statement
> and put Next in the middle, but an error message appears.
>
> Do you know how I can solve it?
>
> <%
> For m = 0 To Ubound(minArray,2)
>
> If Isnull(minArray(0,m)) or minArray(0,m) = "" Then
> Next
> End If
>
> Response.Write "Hello world!"
>
> Next
> %>
>
>

For the scenario you are describing, you don't need anything special, just
use your If statement, but in reverse:

<%
For m = 0 To Ubound(minArray,2)

If len(minArray(0,m)) >0 Then
Response.Write "Hello world!"
End If


Next
%>


--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


 
Reply With Quote
 
 
 
 
Roland Hall
Guest
Posts: n/a
 
      01-30-2006
<> wrote in message
news: ups.com...
: Hello,
:
: I have a simple 'For Next'-code (see at the bottom).
:
: In the middle of the loop I want an IF-statement, which (if it is true)
: jump over to next level.
:
: I thought I could solve it through simple just writing an IF-statement
: and put Next in the middle, but an error message appears.
:
: Do you know how I can solve it?
:
: <%
: For m = 0 To Ubound(minArray,2)
:
: If Isnull(minArray(0,m)) or minArray(0,m) = "" Then
: Next
: End If
:
: Response.Write "Hello world!"
:
: Next
: %>

<%
For m = 0 To Ubound(minArray,2)
if minArray(0,m) <> "" then Response.Write "Hello world!"
next
%>

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
question row filter (more of sql query question) =?Utf-8?B?YW5kcmV3MDA3?= ASP .Net 2 10-06-2005 01:07 PM
Quick Question - Newby Question =?Utf-8?B?UnlhbiBTbWl0aA==?= ASP .Net 4 02-16-2005 11:59 AM
Question on Transcender Question :-) eddiec MCSE 6 05-20-2004 06:59 AM
Question re: features of the 831 router (also a 924 question) Wayne Cisco 0 03-02-2004 07:57 PM
Syntax Question - Novice Question sean ASP .Net 1 10-20-2003 12:18 PM



Advertisments
 



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