RecordSet Pagination

Hi all,
I am working on pagination of recordsets returned via ODBC calls to a database connection, similar to what the search engines (Google, et al) do with long result sets. I have tried to use the recordSet.AbsolutePage property, but found that it is not supported by my driver (Oracle ODBC 8.0.5.9). It is supported by the MS Oracle driver (from MDAC 2.5), but that driver poses larger problems for me.
Does anyone know if AbsolutePage is supported in later versions of the Oracle Driver? or have any other suggestions on pagination while I am constrained to the 8.0.5.9 driver (based on an 8.0.5 engine)?
Thanks in advance,
Bill

When working with dates in MySQL, make sure the dates are of the date type and the correct format.
PHP has a DateTime class that makes it easy to work with dates. You can read about this online. Note that with the DateTime class there is the date, and then there is the way the date is formatted.
The WHERE clause should be pretty straightforward, something like "WHERE dateithappened = '$dateselected'' or WHERE dateithappened BETWEEN '$dateselected1' AND '$dateselected2'
The logic for your previous next would be something like the following. I just pulled this from a script, so it isn't exactly what you need. (I have no way of knowing exactly what you need). Note that variables with _f are the formatted versions, for display.
$date = new DateTime("$date1");
$dates_f = $date->format('M j, Y');
$date->modify('- 1 day');
$previous = $date->format('Y-m-d');
$date->modify('+ 2 day');
$next = $date->format('Y-m-d');
$prevnext = "<h2 class='noPrint' style='text-align:center'><a href='$scriptname?report_type=$report_type&date1=$previous&datetype=$datetype'><img src = '../identity/prev.gif' class='icon' ></a> $dates_f <a href='$scriptname?report_type=$report_type&date1=$next&datetype=$datetype'><img src = '../identity/next.gif' class='icon' ></a></h2>";

Similar Messages

  • Pagination of a returned recordset

    Hi,
    (I'm using DW 6.1 and Coldfusion MX with an Access database).
    I've been
    going over this for the past couple of days and I am stumped.
    I have a form
    that collects information used to search on the database:
    <FORM name="mp3search" ACTION="mp3test.cfm"
    METHOD="POST">
    <TABLE ALIGN="center" BORDER="1">
    <TR bgcolor="#66CCFF" class="memberhead">
    <Th width="170"> <div align="left">Speaker's
    Last Name: </div></Th>
    <Th width="243" align="left"> <INPUT TYPE="text"
    NAME="SpeakerLName"
    size="20">
    </Th>
    </TR><TR class="memberhead">
    <Th> <div align="left">Speaking
    Date</div></Th>
    <TD align="left"> <INPUT TYPE="text"
    NAME="Speak_date" size="10">
    </TD>
    </TR>
    <TR bgcolor="#66CCFF" class="memberhead">
    <Th> <div align="left">Title:
    </div></Th>
    <TD> <INPUT TYPE="text" NAME="Title" size="35">
    </TD>
    </TR>
    <TR bgcolor="#66CCFF" class="memberhead">
    <Th> <div align="left">Speaking Type:
    </div></Th>
    <TD><select name="Speak_type">
    <OPTION VALUE=""></OPTION>
    <OPTION VALUE="Sermon">Sermon</OPTION>
    <OPTION VALUE="LTT">LTT</OPTION>
    <OPTION VALUE="GTT">GTT</OPTION>
    <OPTION VALUE="Family Retreat">Family
    Retreat</OPTION>
    <OPTION VALUE="Mens Retreat">Men's
    Retreat</OPTION>
    <OPTION VALUE="Womens Retreat">Family
    Retreat</OPTION>
    <OPTION VALUE="Other">Other</OPTION>
    </SELECT> </TD>
    </TR>
    <TR bgcolor="#66CCFF">
    <TD COLSPAN="2" ALIGN="center"> <INPUT
    TYPE="submit" VALUE="Search">
      <INPUT name="Reset" TYPE="reset"
    VALUE="Clear Form"></TD>
    </TR>
    </TABLE>
    </FORM>
    On my action page, my query looks like this:
    <cfquery name="rsGetMp3" datasource="Chesapeake">
    SELECT *
    FROM mp3 WHERE 0=0
    </cfquery>
    I have recordset pagination code as well. If I select nothing
    in the form,
    all the records show up (which is what I expect), but if I
    search on, say,
    the last name, they still all show up. Further, I have some
    additional code
    that I can put into the query (I repeat the revised query):
    <cfquery name="rsMp3Search" datasource="Chesapeake">
    SELECT *
    FROM mp3 WHERE 0=0
    <!--- Search by Last Name --->
    <cfif FORM.SpeakerLName IS NOT "">
    AND SpeakerLName LIKE '%#FORM.SpeakerLName#%'
    </cfif>
    <!--- Search by Date --->
    <cfif FORM.Speak_date IS NOT "">
    AND Speak_date LIKE '%#FORM.Speak_date#%'
    </cfif>
    <!--- Search by Title --->
    <cfif FORM.Title IS NOT "">
    AND Title LIKE '%#FORM.Title#%'
    </cfif>
    <!--- Search by Speaking Type --->
    <cfif FORM.Speak_type IS NOT "">
    AND Speak_type LIKE '%#FORM.Speak_type#%'
    </cfif>
    ORDER BY Speak_date DESC
    </cfquery>
    Running the search again, with just the last name, it works:
    I get what I
    searched for, and only that. BUT now, if there are enough
    records to create
    2 or more pages, when I click on the "next page" link, I get
    this error:
    Element SPEAKERLNAME is undefined in FORM
    If I select "show all records" in the query, I get no
    problem. I don't get
    it; I'm at wit's end on this. I'm a dabbler in this so I have
    much
    appreciation for your knowledge and advice.
    Thanks.

    You don't show the "Next Page" link in your code. If it is a
    <A> link, you need to do something like
    <CFOUTPUT>
    <A HREF="nextPage.cfm?speakerLname=#speakerLname#
    </CFOUTPUT>

  • Need help in HTML(CSV) Dataset pagination!

    Dear sir!
    Is it possible to create pagination in dataset (HTML or CSV) like MySQL recordset pagination. It'll be great idea show 10 or 20 rows instead of 500 or 1000. And the second question, is it possible to get specific data (rows) from dataset like query in MySQL.
    Thank you!

    Hi mutia
    If I understand you correctly, the code below is what you're looking for. It is just a crude example with a start screen with a help button, when you click on the help button, a new frame is opened and a string containing HTML tags is displayed. You can compile and test it like this:
    javac myFrame.java
    java myFrame
    myFrame.java
    =======================
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class myFrame extends JFrame implements ActionListener {
       public static void main(String args[]) {
          myFrame frame = new myFrame();
          frame.pack();
          frame.setVisible(true);
       public myFrame() {
          setTitle("Main Frame");
          JPanel pan=new JPanel();
          pan.setLayout(new BorderLayout());
          pan.setPreferredSize(new Dimension (200, 100));
          setContentPane(pan);
          JButton helpButton = new JButton("H E L P");
          pan.add(helpButton);
          helpButton.addActionListener(this);
          addWindowListener(new WindowAdapter() {
             public void windowClosing(WindowEvent e) {
                System.exit(0);
       public void actionPerformed(ActionEvent e) {
          JFrame F=new JFrame();
          F.setTitle("Help Screen");
          JPanel pan=new JPanel();
          pan.setLayout(new BorderLayout());
          pan.setPreferredSize(new Dimension (200, 100));
          F.setContentPane(pan);
    * lab can be read in from a file but I'll leave that part up to you
          JLabel lab=new JLabel("<html><font size=+1 color=blue>This is a test help<br>message</html>");
          pan.add(lab);
          F.pack();
          F.setVisible(true);
    }V.V.

  • Is ADDT in active development?

    I have recently downloaded the Adobe Dreamweaver Developer Toolbox trial and have completed the tutorials available for it on the Dreamweaver Developer Center. In 2003-2004 I was using InterAKT's products off and on, but I'd left web design altogether during the MX Kollection period. Now that I've returned to web design, I find that Adobe has acquired InterAKT and the ADDT product is what remains. Initially, I assumed this was a good sign for tighter integration. I thought that I'd simply get the ADDT trial, spend some time with the documentation, go over the tutorials, read through these forums and get somewhat up to speed and then make my purchase.
    However, what I've found is that many of the tools that had been available to InterAKT users are not part of ADDT (and are now discontinued altogether), the documentation is very slim, there is little ADDT specific training material to speak of, and the robust forum interaction that InterAKT provided isn't occurring here.
    It's not my intention to flame, rather simply to express my disappointment and my hope that Adobe works to remedy these shortcomings.
    - Documentation (The existing documentation isn't bad, it just strikes me a inadequate.)
    - Tutorials (Again, the four ADDT specific tutorials were good. I was able to follow them and my resulting applications worked as intended without any hair pulling. But I still do not know how to use most of the ADDT beyond guessing. What about tutorials explaining the Many-to-Many feature, the various User Authentication features, so on & so on?)
    - Forum interactivity (I suspect that the forum user-to-user activity would largely pick up on its own if the previous two items were met, but more developer-to-user interaction is really needed with this sort of product. That's a huge part of what made InterAKT so great.)
    Beyond that, I have to wonder why features like recordset pagination are not included. That was something that was trivial to add with the InterAKT tools back when I was using in 2003-2004 but it appears there is no such feature in ADDT (unless I'm mistaken). The lack of KTML is unfortunate, but I have read the threads here explaining that at least there are alternatives.
    I hope That Adobe places a higher commitment on ADDT in the future. I wonder what the future is for this suite of tools. It's a shame to see the InterAKT extensions in such disarray.
    JTueller

    Hi,
    you´re certainly right, the current documentation is indeed behind what´s been provided when Interakt was still independant -- however, some users (me included) are in the process of contributing new stuff.
    Adobe itself will expectedly not be enhancing neither the currently available tutorials nor the ADDT helpfile, so that´s up to us
    Forum interactivity (I suspect that the forum user-to-user activity would largely pick up on its own if the previous two items were met, but more developer-to-user interaction is really needed with this sort of product.
    the ADDT forum´s interactivity for PHP users has notably improved, wheras the ColdFusion and ASP folks are unfortunately not getting served that well -- mainly due to the lack of experienced Community Experts.
    However, as *all* Adobe forums are user-to-user ones, any participance of the developers is not expectable -- that´s once again up to us folks to help each other, but I don´t see a huge problem at least in the PHP realm.
    Beyond that, I have to wonder why features like recordset pagination are not included. That was something that was trivial to add with the InterAKT tools back when I was using in 2003-2004 but it appears there is no such feature in ADDT (unless I'm mistaken)
    the recordset pagination you´re assumingly talking about has been provided by a separate Interakt extension which has been discontinued -- however that feature as such is still available when using DW´s native recordset pagination with recordsets created by ADDT
    I hope That Adobe places a higher commitment on ADDT in the future
    A far as I can see, Adobe itself keeps focussing on the main sellers (Dreamweaver, Photoshop, Flash) and of course the RIA
    (Rich Internet/Interface Applications) realm. The support for all other products
    (including, but not only, ADDT) is sort of community-driven.
    I wonder what the future is for this suite of tools
    that´s IMHO never really predictable with *any* of Adobe´s products which, like ADDT, rather cover a niche market
    It's a shame to see the InterAKT extensions in such disarray
    not quite, as some folks are working on improving stuff behind the scenes -- stay tuned :-)
    You personally seem to have sorta missed the MX Kollection area -- if you had been there at that time, you would have noticed that ADDT is actually the same as the last Kollection version 3.7, and that all Kollection tutorials still apply to ADDT. However, let´s see if some of the old Kollection tutorials can be retrieved, what would certainly be a good start
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Locked Regions & Server Behaviors

    Hi:
    Any help to resolve this problem
    making this change would require changing code that is locked
    by a template or a translator
    I use templates in all of my projects along with server
    behaviors, and i frequently get this error.
    I have worked around this by adding necessary recordset
    behaviors before applying template but sometimes you don't know
    always what you would be requiring at the end and even if i do know
    the Recordset pagination invokes this error which I actually use
    after applying template to my page.
    Sometimes i would apply a recordset in a temporary file and
    will copy the pertinent code from there to the page i am working
    on.
    I want an efficient approach to use server behaviors without
    any conflict with templates. I usually have simple templates with a
    single editable field for recordset display.
    Is it something wrong with the way I am creating template or
    what should be the approach to avoid this error. Further sometimes
    I do have server behaviors inside templates (not always).
    P.S. Post earlier to General Category but I believe this is
    the right one.

    The page validates without adding the SB?
    I can see nothing wrong with your markup as posted.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Saad Shams" <[email protected]> wrote in
    message
    news:[email protected]...
    > Still I am unable to track the problem. To avoid future
    problems, where
    > exactly
    > do you suggest me to place code within head section. I
    doubt that it may
    > happened due to code in head section at arbitrary
    places.
    >
    > I have checked with creating a simple template with few
    tables in it,
    > adding
    > server behaviors works fine, as a result of increase in
    design/code may be
    > due
    > to addition of code in head section, i believe it
    happens due to that.
    >
    > Here is a pattern of dreamweaver head section of a
    template, suggest me a
    > safest place within this region.
    >
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    > <!-- TemplateBeginEditable name="doctitle" -->
    > <title>Untitled Document</title>
    > <!-- TemplateEndEditable -->
    > <!-- TemplateBeginEditable name="head" --><!--
    TemplateEndEditable -->
    > </head>
    >
    > Well at this point, i added some SB and the error
    appears again on further
    > SBs, check it yourself.
    >
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    > <!-- TemplateBeginEditable name="doctitle" -->
    > <title>Untitled Document</title>
    > <!-- TemplateEndEditable -->
    > <!-- TemplateBeginEditable name="head" --><!--
    TemplateEndEditable -->
    > <?php mysql_select_db($database_connBalanaa,
    $connBalanaa);
    > $query_Recordset1 = "SELECT * FROM advertise";
    > $Recordset1 = mysql_query($query_Recordset1,
    $connBalanaa) or
    > die(mysql_error());
    > $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    > $totalRows_Recordset1 =
    mysql_num_rows($Recordset1);?>
    > </head>
    >
    > Can't add any further Recordset after that on CHILD
    Pages.
    >
    > Looking forward to your kind suggestions.
    >

  • Put pagination recordset inside a function

    Hi, I need some help if its possible.
    I'm using Dreamweaver's PHP code for selecting data from database and outputing them in pages ( Pagination ). I thought to create a very general record set and then put it in a function so I can re-use it,  and change only things like the query and the $maxRows_. So it looks like this:
    .....                                                                                                           ..... PreviousNext.....
    How can I make this??? Imean if I put all the php code (above the html tags) inside a function, what should my function return back, how will the output data inside the while loop will appear properly and also the pagin links???

    There are many scripts that are pre-made, tried & tested that you could use.
    There's a beautiful step-by-step tutorial along with source files here that you can easily follow: http://net.tutsplus.com/tutorials/php/how-to-paginate-data-with-php/
    -ST

  • Pagination after executequery with a dynamic where clause

    Hi all,
    I have a problem with pagination after setting a where clause dynamically and performing an executequery in ViewObjectImpl.java.
    As a result of this, the amount of records are decreased returned by the viewobject, however the pagination is not changed. It still reflects the previous amount. It changes only if you have selected the last range of the changed recordset
    Does anybody know how to get the pagination to refect the correct amount of the updated recordset of the viewobject?
    Jdeveloper version 10.1.3.4 / Jheadstart 10.1.3.3.81
    Thanks in advance, Erwin

    Hi,
    I would not add this to the VO query. Instead I would create a View Criteria that uses a bind variable. Then in the Application Module Data Model, you select the VO instance and choose edit (button on top) to permanently associate the view criteria)
    Advantages of this approach
    - The VO definition can be used elsewhere without the restriction
    - the bind variable is not mandatory and yu can set it such that if no value is provided a full query is executed
    Frank

  • Pagination with url parameter?

    I have a page that displays the contents of a mysql database
    via a dynamic table.
    currently I have the recordset query set to filter the id by
    url parameter "catID".
    So page?catID=5 displays the contents of record id 5 of the
    mysql table.
    I am trying to add pagination to this page but do not know
    what I am doing :L
    I can use the wizard to place pagination if I remove the
    filter on the query, and happily page through all the
    records....however I want my cake and want to eat it to...so I
    really want to get the pagination working and still be able to use
    the url parameter function to pinpoint records.
    Thanks for your time and assistance.
    Saw

    Saw_duuhst wrote:
    > dreamweaver cs3, mysql, php
    Just make sure your recordset is filtering from the
    querystring and your
    pagination links should be inserting them too. In all the ASP
    pages I
    have made with pagination they always carry over the
    querystring.
    Dooza
    Posting Guidelines
    http://www.adobe.com/support/forums/guidelines.html
    How To Ask Smart Questions
    http://www.catb.org/esr/faqs/smart-questions.html

  • Multi page recordset output from ASP page on Spry Tabbed Panel Widget

    I am using a simple Spry Tabbed panel set on my asp page to show the output from different ASP pages, inside the tabbed panels. The tabbed panels on the page under consideration (destination page) display the output from different asp pages (source pages). The source asp pages generate multi page outputs which are paginated on the source page itself and pagination links are displayed on the source page itself.
    However, we dont want to display the source page outside of the tabbed panel, but instead the output content from the source asp pages should show inside the tabbeed panels only. The first page generated by the source asp page displays correctly inside the tabbed panel. However, when the user clicks on the links for the next page generated by the source asp page, but which is being displayed inside the destination page tabbed panel, they dont display the next page inside the tabbed panel. Instead the source asp page displays the output outside the tabbed panel destination  page.
    Please advise on how to ensure that the user can page through the recordset generated by the source asp page by clicking on the pagination links at the bottom of the records, while ensuring that the output displays within the tabbed panels on the destination asp page.
    I am enclosing the source code being used to generate the spry tabbed panel widget and also updating it with the output from the source asp page. In this case, the code given below is from the main page containing the widget and the source asp page is "sample.asp", which generates multi page output.
    Please note that I am not too keen on using xml data sets output from the source asp page, but would be more comfortable with directly using the asp pages to fill the tabbed panel content.
    Please help
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Untitled Document</title>
    <script language="javascript" src="/SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <script src="/SpryAssets/xpath.js" type="text/javascript"></script>
    <script src="/SpryAssets/SpryData.js" type="text/javascript"></script>
    <link href="/SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <div id="TabbedPanels1" class="TabbedPanels">
      <ul class="TabbedPanelsTabGroup">
          <li class="TabbedPanelsTab" tabindex="0" onclick="Spry.Utils.updateContent('two','sample.asp?page=' <%=i%>); Spry.Data.initRegions();" >Tab 1</li>
           <li class="TabbedPanelsTab" tabindex="0">Tab 2</li>
      </ul>
      <div class="TabbedPanelsContentGroup">
        <div id=two class="TabbedPanelsContent">Content 1</div>
        <div class="TabbedPanelsContent">Content 2</div>
      </div>
    </div>
    <script type="text/javascript">
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
    </script>
    </body>

    I fully agree that the problem does not lie with tthe tabbed panels.
    The solution would probably be first required to be tried using ajax on any div tab.
    Then the same code would have to be used on Sprytabbed panel. Hence, the following may be advised:
    1. Sample code for server side pagination and displaying inside any div tag and refreshing it using ajax. the update link would also lie inside the div tag which would show the next/ previous page without reloading the page.
    2. Then adapting the refresh technique using ajax in the Spry Tabbed panel using the inbuilt updatecontent method of the Spry Tabbed panels.
    In order to achieve the above, I am getting the recordset output in the tab content as expected. The recordset is also getting the pagination links from server side asp as required.
    However, it is also generating the following error.
    Webpage error details
    Message: Unterminated string constant
    Line: 9
    Char: 56
    Code: 0
    URI: http://localhost/test/test5.asp
    The sourcecode is as given below. If you can help with the error indicated above, my problem would probably get solved.
    <html><head>
    <title>Untitled Document</title>
    <link href="/SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css">
    <script src="/SpryAssets/SpryURLUtils.js" type="text/javascript"></script>
    <script src="/SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <script src="/SpryAssets/SpryData.js" type="text/javascript"></script>
    <script src="/SpryAssets/xPath.js" type="text/javascript"></script>
    </head>
    <body>
    <div id="TabbedPanels1" class="TabbedPanels">
      <ul class="TabbedPanelsTabGroup">
        <li class="TabbedPanelsTab" tabindex="0" onclick="Spry.Utils.updateContent('one','untitled-5.asp');">Tab 1</li>
        <li class="TabbedPanelsTab" tabindex="0" >Tab 2</li>
      </ul>
      <div class="TabbedPanelsContentGroup">
        <div id=one class="TabbedPanelsContent">Content 1</div>
        <div id ="two" class="TabbedPanelsContent">Content 2</div>
      </div>
    </div>
    <script type="text/javascript">
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
    </script>
    </body>
    </html>

  • How to do Pagination in struts application????

    My struts application lists the records from database using iterator.
    I use ArrayList in Action class and i access the list in JSP through by setting request variable in action class.But if i have 10 fields which are multi line format such as address.I need to restrict records 4 per page.how to do that??
    I am stuck in pagination of struts.

    Use dispatch action.Here i am displaying only 2 records per page because my appln required 10 fields you can extend it to any count.You can use this..
    public class FeedListAction extends DispatchAction {
         public ActionForward list(ActionMapping mapping,
                                    ActionForm form,
                                    HttpServletRequest request,
                                    HttpServletResponse response)
                 throws IOException {
              //List method is called first when we want to list our records.
                                      FeedForm frm = (FeedForm)form;
                                      ArrayList feedlist = new ArrayList();
              //session is used to know where are we..
                                      HttpSession ses = request.getSession(true);
              // two parameters which will be used to limit the records for perticular page.
                                      String s = "0";
                                      String e ="2";
              //call the method which will be used to display the records..
                                      feedlist = frm.getEmployees(Integer.parseInt(s),Integer.parseInt(e));
              //set the list so that jsp page will use to display it.
                                      request.setAttribute("list", feedlist);
              // set the attributes so that they are used while navigation and
              // these attributes wiil be used by the  other methods of Dispatch action.
                                      ses.setAttribute("s", s);
                                      ses.setAttribute("e", e);
              //Find the success page.
                                      return mapping.findForward(success);
              //end of List method
         public ActionForward next(ActionMapping mapping,
                                    ActionForm form,
                                    HttpServletRequest request,
                                    HttpServletResponse response)
                  throws IOException {
                                      //here add code for session.          
                                    int en =0;
                                    int st=0;
                                    st = Integer.valueOf( s ).intValue();
                                      en = Integer.valueOf( e ).intValue();
    // to know whether next has exceeded the recordset limit we need to take number of rows
    // which can accessed through nrows function.
                                      int nrows = frm.rows();
                                      if(st==(nrows-2)){
                                           st = nrows-2;
                                      }else{
                           st=st+2;en=2;                                      
      //go for setting values in your module (which will interact with dadtabase to fetch records).                                           ses.setAttribute("s",Integer.toString(st));
    //then set session attribute.                                  
                                      return mapping.findForward(success);
           //end of next method.     
         }

  • Data loss during Pagination

    I have a dropdown selection box setup on a PHP page and its
    options coming from a MySQL database. When user selects an option,
    it will POST to another detail PHP page to list out all records. I
    used the recordset and server behavior functions in Dreamweaver 8
    to achieve that.
    It works well until I setup pagination using server behavior
    function to limit records displayed on the page. The first page of
    records displayed OK but when I click next page or last page,
    nothing was displayed although the record number showing correctly.
    It seemed the option value posted to page 1 OK but lost when
    viewing 2nd, 3rd....pages.
    Anyone has any idea on how to rectify it ? PLEASE

    I think that there's a disclaimer you can read about data loss during repairs. I'd have to locate it but essentially it says that you need to back up files for any repairs. You just never know. Whether it's a logic board or a Shift key, you just don't know what they're doing or how they're doing it. So it's best to back up.
    Call the store. It's not ridiculous. All sorts of people have all sorts of important data on their machines - data that is crucial to them. It's not a big deal.

  • Url rewriting & pagination

    I am in the process of learning url rewriting, and with the help of a great book, 'Professional search engine optimization with PHP', i have got as far as rewriting category and product url's into keyword rich ones.
    example at http://www.blunique.co.uk/Earrings-C1.html
    where i am struggling is rewriting the url when i have the recordset results paginated, (using dreamweaver standard server behavior for repeat region).
    Grateful for any advice.

    Greetings,
    I'll tailgate this similar question; I could use a guide to WLP 81x URLs. What does each parameter mean in file mode (.portal) and stream mode?
    Any help here? Tips for understanding URLs would help Anders too.
    tnx, curt

  • Issue in pagination of pivotal view (10 rows per page)???

    Hi All,
    I’m implementing pagination in pivotal view, report has to show 10 records per page.
    Report has to show for 8 weeks data per employee and 10 employees information per page, however report is displaying data for more than 10 employees and for a week single week, in second page its showing for 2 week and so on ….
    I used all the following functions however issue persists.
    1. FLOOR(RCOUNT(1) /10)
    2. CEILING((RCOUNT(1))/10.0)
    3. TRUNCATE((RCOUNT(1)-1)/10, 0) +1
    4. CASE when rcount(1)<11 then '1-10' when rcount(1)<21 then '11-20' when rcount(1)<31 then '21-30' else '30+' end
    Any suggestions
    Thanks,
    SMA

    Look in criteria add one more column
    in FX write this formula
    Go to the formula window of this column and enter the formula shown below
    CASE WHEN RCOUNT(1) < 11 THEN ‘1-10′
    WHEN RCOUNT(1) < 21 THEN ‘11-20′
    WHEN RCOUNT(1) < 31 THEN ‘21-30′
    ELSE ‘30+’ END
    Once this is done, drag and drop this column into the Pages section of your pivot table. Now you can paginate through your pivot table report.
    let us know if its solve your problem
    Thanks

  • Recordset per message in Sender File Adapter

    Hi Friends
    I have configured a sender file adapter to pick up *.txt files from a specific path, Since the file is having thousands of records it is failing to process the file at  PI level . In order to avoid the problem I have kept Recordset Set Per Message as 10 , but still PI is processing all the records into a single message. Please help me in troubleshooting it.
    Regards
    Suman.

    Hi Suman,
      Go thru these threads for troubleshooting...
    Massive file
    Processing huge file loads through XI
    Processing of huge no of Inbound xml files
    Bottleneck in Large file processing
    How to process large data files in XI  ?  100 MB files ?
    Regds,
    Pinangshuk.

  • When I try to create a Recordset i get Javascript runtime error

    Please help i am working with Php and trying to create a
    recordset query to access my table etc. this is what i get when i
    click + Recordset from the Server Behaviors window:
    JavaScript error while loading RecordSet.htm:
    At line 1111 of file: "C:\Program
    Files\Macromedia\Dreamweaver
    8\Configuration\ServerBehaviors\PHP_MySQL\Recordset.js" : theStr =
    theStr.replace(/(?>)*/gi, ''''); //remove close tags
    SyntaxError: Invalid Quantifier ?

    i restarted it i am gonna restart the computer
    also went here
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_19105&sliceId=1#dat
    didnt really help

Maybe you are looking for