Ask a Question related to ASP Database, Design and Development.
-
chris #1
simple question for ASP...please help...many thx...
I would like to know how can I display the values for the attribute in the
log_table???
The log_table contains 2 attributes, loguser and logdate.
Sql_log = "select * from log_table"
Set Rs_log = Conn.Execute(Sql_log)
While Not Rs_log.EOF
Response.Write "<tr>"
For i=0 to Rs_log.Fields.Count-1
Response.Write"<td>"& Rs_log(i) & "</td>"
Response.Write "</tr>"
Next
Rs_log.MoveNext
Wend
Please help....thanks alot!
chris Guest
-
Need Simple Answer to Simple Contribute/Firefox question
Hello all; I've tried the Adobe help in CS3, tech support, phone support, this forum, other forums, Mozilla, and nowhere can I get a straight... -
simple question
Hi there, As an absolute beginner I have a simple question. I have a scene with two layers. Layer 1 should start again at frame 1 while Layer 2... -
SImple question?
Can anyone please tell me how to keep 2 windows open so that as soon as I click on one of them, the other one does not minimise and have to be... -
another simple question.
select from db where id = 3... if it doesn't exist, how can i display a message saying so. for example: "3" is not a valid selection. ... -
A simple question but ..
Hi Can someone give me a link where i can see (and do it my self) how to create a shape tweening? (Flash MX) Yes i am a newbie but want to learn... -
Jeff Cochran #2
Re: simple question for ASP...please help...many thx...
On Wed, 11 Feb 2004 01:42:57 +0800, "chris" <router88@sinaman.com>
wrote:
First, what happens when you use this code?>I would like to know how can I display the values for the attribute in the
>log_table???
>The log_table contains 2 attributes, loguser and logdate.
>
>Sql_log = "select * from log_table"
>Set Rs_log = Conn.Execute(Sql_log)
>
>While Not Rs_log.EOF
>Response.Write "<tr>"
>
>For i=0 to Rs_log.Fields.Count-1
>
>Response.Write"<td>"& Rs_log(i) & "</td>"
>Response.Write "</tr>"
>Next
>
>Rs_log.MoveNext
>Wend
>
>Please help....thanks alot!
Or how about simplifying it:
While Not Rs_log.EOF
Response.Write "<tr>"
Response.Write"<td>"& Rs_log(loguser) & "</td>"
Response.Write"<td>"& Rs_log(logdate) & "</td>"
Response.Write "</tr>"
Rs_log.MoveNext
Wend
Jeff
Jeff Cochran Guest
-
chris #3
Re: simple question for ASP...please help...many thx...
Thanks Jeff...
When I run the script, it shows nothing...any idea??
CHRIS
"Jeff Cochran" <jcochran.nospam@naplesgov.com>
???????:404931ad.630451140@msnews.microsoft.com...the> On Wed, 11 Feb 2004 01:42:57 +0800, "chris" <router88@sinaman.com>
> wrote:
>> >I would like to know how can I display the values for the attribute in>> >log_table???
> >The log_table contains 2 attributes, loguser and logdate.
> >
> >Sql_log = "select * from log_table"
> >Set Rs_log = Conn.Execute(Sql_log)
> >
> >While Not Rs_log.EOF
> >Response.Write "<tr>"
> >
> >For i=0 to Rs_log.Fields.Count-1
> >
> >Response.Write"<td>"& Rs_log(i) & "</td>"
> >Response.Write "</tr>"
> >Next
> >
> >Rs_log.MoveNext
> >Wend
> >
> >Please help....thanks alot!
> First, what happens when you use this code?
>
> Or how about simplifying it:
>
> While Not Rs_log.EOF
> Response.Write "<tr>"
> Response.Write"<td>"& Rs_log(loguser) & "</td>"
> Response.Write"<td>"& Rs_log(logdate) & "</td>"
> Response.Write "</tr>"
> Rs_log.MoveNext
> Wend
>
> Jeff
chris Guest



Reply With Quote

