Ask a Question related to ASP Database, Design and Development.
-
rikesh #1
Refresh Table data
Hi
Is it possible to refresh the data in a table supplied by a recordset?
--
Kind Regards
Rikesh
(V.InterDev6.0-SP5/W2K-SP4/SQL2K-SP3)
rikesh Guest
-
CFC Query Data Refresh
Hi, I have a flash form that displays status data (from SQL queries) for three different EDI interfaces on three servers. This is simply a static... -
How to take data out of table, restructure the table and then put the data back in
Hi All Wonder if you could help, I have a bog standard table called STOCKPRICES that has served me well for a while, but now I need to change the... -
refresh pivot table automatically from form
I,ve made a form with a pivot table which can be edited in excel. I've tried to refresh the pivot table automatically in excel but it doesn't work... -
Changing a html table when new data is entered into SQL table.
Hi all, I was wondering if anyone has any ideas on how I would go about this task. What I have is a html table which is populated from 2 different... -
Data refresh
Hello! After that I have changed the filter of a form, how I get immediately after the new data displayed? (The textboxs are all linked to the... -
Ray at #2
Re: Refresh Table data
Could you elaborate a bit on what you mean? A table in a database? An html
table? What are you trying to do that isn't working?
Ray at work
"rikesh" <rikesh_patel@website.com> wrote in message
news:%23vY%23Qv7%23DHA.1452@TK2MSFTNGP09.phx.gbl.. .> Hi
>
> Is it possible to refresh the data in a table supplied by a recordset?
>
>
> --
> Kind Regards
>
> Rikesh
> (V.InterDev6.0-SP5/W2K-SP4/SQL2K-SP3)
>
>
Ray at Guest
-
rikesh #3
Re: Refresh Table data
A table on a HTML page!
"Ray at <%=sLocation%> [MVP]" <myfirstname at lane34 dot com> wrote in
message news:emF7L17%23DHA.3284@TK2MSFTNGP09.phx.gbl...html> Could you elaborate a bit on what you mean? A table in a database? An> table? What are you trying to do that isn't working?
>
> Ray at work
>
> "rikesh" <rikesh_patel@website.com> wrote in message
> news:%23vY%23Qv7%23DHA.1452@TK2MSFTNGP09.phx.gbl.. .>> > Hi
> >
> > Is it possible to refresh the data in a table supplied by a recordset?
> >
> >
> > --
> > Kind Regards
> >
> > Rikesh
> > (V.InterDev6.0-SP5/W2K-SP4/SQL2K-SP3)
> >
> >
>
rikesh Guest
-
Ray at #4
Re: Refresh Table data
In addition to specifying what kind of table you're talking about, I believe
that elaboration on what you're doing would also help.
Here's some basic code that people often use:
<table>
<%
Do while not rs.EOF
%>
<tr>
<td><%=rs.Fields.Item(0).Value%></td>
<td><%=rs.Fields.Item(1).Value%></td>
</tr>
<%
rs.Movenext
Loop
rs.Close : Set rs = Nothing
%>
Ray at work
"rikesh" <rikesh_patel@website.com> wrote in message
news:O3BHlF8%23DHA.916@TK2MSFTNGP10.phx.gbl...> A table on a HTML page!
>
> "Ray at <%=sLocation%> [MVP]" <myfirstname at lane34 dot com> wrote in
> message news:emF7L17%23DHA.3284@TK2MSFTNGP09.phx.gbl...> html> > Could you elaborate a bit on what you mean? A table in a database? An>> > table? What are you trying to do that isn't working?
> >
> > Ray at work
> >
> > "rikesh" <rikesh_patel@website.com> wrote in message
> > news:%23vY%23Qv7%23DHA.1452@TK2MSFTNGP09.phx.gbl.. .> >> > > Hi
> > >
> > > Is it possible to refresh the data in a table supplied by a recordset?
> > >
> > >
> > > --
> > > Kind Regards
> > >
> > > Rikesh
> > > (V.InterDev6.0-SP5/W2K-SP4/SQL2K-SP3)
> > >
> > >
> >
>
Ray at Guest



Reply With Quote

