Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

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

    rikesh Guest

  5. #4

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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139