Question re Recordset Navigation

Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default Question re Recordset Navigation

    Does anyone know whether there is a Recordset Navigation extention that allows
    you to display all of the pages or records at once with a "view all at once"
    link or "all" link? I am using ASP VBScript and a Microsoft Access database.

    Thank you in advance for any pointers!

    Jeremy Williams Guest

  2. Similar Questions and Discussions

    1. Custom Recordset Navigation
      I would like the Recordset Navbar to display as: << First < Previous Next > Last >> I would like it left aligned with no table or cell widths...
    2. ANN: MX Navigation Pack - better recordset navigation from InterAKT
      Hi, It's been a long time since I've posted in this forum ... But let's hope I'm not completely forgotten :) We've just released a new product...
    3. Using multiple recordset navigation bars
      Hello, I'm on IIS 5, W2K, ASP Javascript...Just wondering if there might be a problem with attempting to use multiple recordset navigation...
    4. Recordset page navigation
      Hi , I have a page that get 1000 records and I?m displaying it 10 records a page. I want to use page numbers line 1,2,3, ...as my navigation instead...
    5. multiple recordset navigation bars
      Hello, Just wondering if there might be a problem with attempting to use multiple recordset navigation bars....I cannot seem to get this to work...a...
  3. #2

    Default Re: Question re Recordset Navigation

    Any link can be used to an asp page that returns the content of an un filtered
    recordset , or to save creating a new page use an else if statemnet with two
    sql queries in the same page, if I understood your question correctly

    redtail01 Guest

  4. #3

    Default Re: Question re Recordset Navigation

    "Jeremy Williams" <webforumsuser@macromedia.com> wrote in message
    news:d8n69m$flj$1@forums.macromedia.com...
    > Does anyone know whether there is a Recordset Navigation extention that
    allows
    > you to display all of the pages or records at once with a "view all at
    once"
    > link or "all" link? I am using ASP VBScript and a Microsoft Access
    database.
    >
    > Thank you in advance for any pointers!
    Put this bit of code after the DW asp code above the HTML tag (use your
    recordset name instead of Recordset1):

    <%
    tfm_showall = MM_urlStr
    If Request("offset").Count > 0 AND CStr(Request("offset")) = "" Then
    Repeat1__numRows = -1
    Recordset1_last = Recordset1_total
    End If
    %>

    Then create the link to show all records like this:

    <a href="<%=tfm_showall%>">All</a>

    Hope that helps.


    --
    Tom Muck
    co-author Dreamweaver MX 2004: The Complete Reference
    [url]http://www.tom-muck.com/[/url]

    Extending Knowledge Daily
    [url]http://www.communitymx.com/[/url]


    Tom Muck Guest

  5. #4

    Default Re: Question re Recordset Navigation

    Tom,

    Thank you for your reply. Does your "Horizontal Looper" script have this
    record set navigation option to show "all" record sets? I am a recent convert
    to Dreamweaver from Adobe GoLive and am still on the learning curve with
    delving into ASP code. I have a lot of great reference books! Thank you,
    again.

    Jeremy Williams 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