From: Bob Barrows [MVP] on
daddywhite wrote:
> The code that shank showed was auto produced by dreamweaver 8 - maybe

Really? I didn't see any of those mm_ variables. How did you determine
this?

> Bob could re-write that code according to "best practice" with
> comments and we can compare?

Well, isn't that what I just did? You want me to do it again? :-)

--
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.


From: shank on
There was no error. Just an empty screen.
thanks

"Bob Barrows [MVP]" <reb01501(a)NOyahoo.SPAMcom> wrote in message
news:%23HjJuBUhIHA.1208(a)TK2MSFTNGP03.phx.gbl...
> shank wrote:
>>>> Response.Write(arrResultSet(1,iCounter) & "")<<
>> That was the problem,
>> Should have been...
>> Response.Write(arrResultSet(0,iCounter) & "")
>
>
> And, fo future reference, if you had provided an error message and
> indicated which line threw the error, it would have been a much simpler
> diagnosis.
> --
> 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.
>
>


From: shank on
It was generated by DW, but I usually change the MM variables to something
else. Habit I guess...


"Bob Barrows [MVP]" <reb01501(a)NOyahoo.SPAMcom> wrote in message
news:O4bgJQUhIHA.4140(a)TK2MSFTNGP04.phx.gbl...
> daddywhite wrote:
>> The code that shank showed was auto produced by dreamweaver 8 - maybe
>
> Really? I didn't see any of those mm_ variables. How did you determine
> this?
>
>> Bob could re-write that code according to "best practice" with
>> comments and we can compare?
>
> Well, isn't that what I just did? You want me to do it again? :-)
>
> --
> 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.
>
>


From: Bob Barrows [MVP] on
Then you must have had "on error resume next" masking the error.

shank wrote:
> There was no error. Just an empty screen.
> thanks
>
> "Bob Barrows [MVP]" <reb01501(a)NOyahoo.SPAMcom> wrote in message
> news:%23HjJuBUhIHA.1208(a)TK2MSFTNGP03.phx.gbl...
>> shank wrote:
>>>>> Response.Write(arrResultSet(1,iCounter) & "")<<
>>> That was the problem,
>>> Should have been...
>>> Response.Write(arrResultSet(0,iCounter) & "")
>>
>>
>> And, fo future reference, if you had provided an error message and
>> indicated which line threw the error, it would have been a much
>> simpler diagnosis.
>> --
>> 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.

--
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.


From: daddywhite on
> Really? I didn't see any of those mm_ variables. How did you determine
this?

the layout of the variables and the pointlessness of rsManuf_numRows =
0 was classic DW.

>Well, isn't that what I just did? You want me to do it again? :-)

Just thought it would be handy to see your interpretation of best
practice for the code all as one chunk thats all.

regards