Recordset Navigation Help

Good Afternoon
Experts:
I have quite the dilemna this afternoon.  My application performs a simple select all records from a table to initialize navigation...previous, next, first and last. 
However, I now have added a routine to load the last viewed record, by the
logged on User,  in the recordset.  This now causes the original navigation
to not be in order. 
My Question:
Is it possible to perform the select all records and then position a "cursor/index/reference starting point" to a value in that recordset?
Example:
Recordset returns:1,2,3,4,5,6,7,8,9...etc
LastViewed = 5 so base all navigation off of 5...6 next record, 4 is previous record
Thanks,
Ed

Hi Ed!
This is impossible to implement your issue using DI-RecordSet object, but as an option i could suggest you to implement it by stored procedure (T-SQL query) and execute it by DoQuery().
To do it you have to:
- be able to get the last viewed record by code (or T-SQL)
- use IDENTITY function to build an order you want
- use UNION operator to get <i>5,6,7,8,9,1,2,3,4</i> instead of <i>1,2,3,4,5,6,7,8,9</i>

Similar Messages

  • Please Help... Recordset Navigation

    I am using a PHP/MySQL database to incorporate dynamic data
    in my website. In particular, I have a gallery of photo thumbnails
    (the thumbnails are displayed via a Recordset). When clicked on,
    each thumbnail link opens a pop-up window, which displays the name
    and full-size image of the record desired. I've tried to insert a
    Repeated Region server behavior within the pop-up to display one
    full-size picture at a time and a Recordset navigation bar to click
    through the different images. However, I can't seem to figure it
    out.
    Operating System: Mac OS X (v10.3)
    Web Server: Apache
    Browser: N/A
    Database type: MYSQL
    Application server: PHP

    Thanks for your advice, Steve! I'm not sure about the form,
    though. I'm fairly new to PHP...
    Here's the PHP code from the thumbnails page:
    <?php require_once('../../Connections/CSA.php'); ?>
    <?php
    mysql_select_db($database_CSA, $CSA);
    $query_Rides = "SELECT * FROM Rides ORDER BY id ASC";
    $Rides = mysql_query($query_Rides, $CSA) or
    die(mysql_error());
    $row_Rides = mysql_fetch_assoc($Rides);
    $totalRows_Rides = mysql_num_rows($Rides);
    ?>
    <table align="center" cellpadding="0" cellspacing="10"
    style="padding: 5px;">
    <tr>
    <?php
    $Rides_endRow = 0;
    $Rides_columns = 6; // number of columns
    $Rides_hloopRow1 = 0; // first row flag
    do {
    if($Rides_endRow == 0 && $Rides_hloopRow1++ != 0)
    echo "<tr>";
    ?>
    <td>
    <a href="display_ride.php?id=<?php echo
    $row_Rides['id']; ?>" target="_blank" alt="<?php echo
    $row_Rides['name']; ?>" title="<?php echo $row_Rides['name'];
    ?>"><img src="pictures/<?php echo $row_Rides['thumb'];
    ?>" class="ride" /></a></td>
    <?php $Rides_endRow++;
    if($Rides_endRow >= $Rides_columns) {
    ?>
    </tr>
    <?php
    $Rides_endRow = 0;
    while ($row_Rides = mysql_fetch_assoc($Rides));
    if($Rides_endRow != 0) {
    while ($Rides_endRow < $Rides_columns) {
    echo("<td> </td>");
    $Rides_endRow++;
    echo("</tr>");
    }?>
    </table>
    <?php
    mysql_free_result($Rides);
    ?>
    And here's the code from the popup window:
    <?php require_once('../../Connections/CSA.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType,
    $theDefinedValue = "", $theNotDefinedValue = "")
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue)
    : $theValue;
    $theValue = function_exists("mysql_real_escape_string") ?
    mysql_real_escape_string($theValue) :
    mysql_escape_string($theValue);
    switch ($theType) {
    case "text":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    break;
    case "long":
    case "int":
    $theValue = ($theValue != "") ? intval($theValue) : "NULL";
    break;
    case "double":
    $theValue = ($theValue != "") ? "'" . doubleval($theValue) .
    "'" : "NULL";
    break;
    case "date":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    break;
    case "defined":
    $theValue = ($theValue != "") ? $theDefinedValue :
    $theNotDefinedValue;
    break;
    return $theValue;
    $currentPage = $_SERVER["PHP_SELF"];
    $colname_current_Ride = "-1";
    if (isset($_GET['id'])) {
    $colname_current_Ride = $_GET['id'];
    mysql_select_db($database_CSA, $CSA);
    $query_current_Ride = sprintf("SELECT * FROM Rides WHERE id =
    %s", GetSQLValueString($colname_current_Ride, "int"));
    $current_Ride = mysql_query($query_current_Ride, $CSA) or
    die(mysql_error());
    $row_current_Ride = mysql_fetch_assoc($current_Ride);
    $totalRows_current_Ride = mysql_num_rows($current_Ride);
    $colname_next_Ride = "-1";
    if (isset($_GET['id'])) {
    $colname_next_Ride = $_GET['id'];
    mysql_select_db($database_CSA, $CSA);
    $query_next_Ride = sprintf("SELECT * FROM Rides WHERE id >
    %s ORDER BY id ASC", GetSQLValueString($colname_next_Ride, "int"));
    $next_Ride = mysql_query($query_next_Ride, $CSA) or
    die(mysql_error());
    $row_next_Ride = mysql_fetch_assoc($next_Ride);
    $totalRows_next_Ride = mysql_num_rows($next_Ride);
    $colname_previous_Ride = "-1";
    if (isset($_GET['id'])) {
    $colname_previous_Ride = $_GET['id'];
    mysql_select_db($database_CSA, $CSA);
    $query_previous_Ride = sprintf("SELECT * FROM Rides WHERE id
    < %s ORDER BY id DESC",
    GetSQLValueString($colname_previous_Ride, "int"));
    $previous_Ride = mysql_query($query_previous_Ride, $CSA) or
    die(mysql_error());
    $row_previous_Ride = mysql_fetch_assoc($previous_Ride);
    $totalRows_previous_Ride = mysql_num_rows($previous_Ride);
    $queryString_current_Ride = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
    $params = explode("&", $_SERVER['QUERY_STRING']);
    $newParams = array();
    foreach ($params as $param) {
    if (stristr($param, "pageNum_current_Ride") == false
    stristr($param, "totalRows_current_Ride") == false) {
    array_push($newParams, $param);
    if (count($newParams) != 0) {
    $queryString_current_Ride = "&" .
    htmlentities(implode("&", $newParams));
    $queryString_current_Ride =
    sprintf("&totalRows_current_Ride=%d%s",
    $totalRows_current_Ride, $queryString_current_Ride);
    ?>
    <h1 class="rideTitle" style="position: relative; top:
    10px"><?php echo $row_current_Ride['name']; ?></h1>
    <area shape="rect" coords="4,3,48,47"
    href="display_ride.php?id=<?php echo $row_previous_Ride['id'];
    ?>" id="Previous Ride" name="Previous Ride" />
    <area shape="rect" coords="47,3,99,47"
    href="display_ride.php?id=<?php echo $row_next_Ride['id'];
    ?>" id="Next Ride" name="Next Ride" />
    <area shape="rect" coords="851,3,897,47" href="#"
    onclick="self.close();" id="Close Window" name="Close Window" />
    <img src="pictures/<?php echo
    $row_current_Ride['image']; ?>" alt="<?php echo
    $row_current_Ride['image']; ?>" title="<?php echo
    $row_current_Ride['image']; ?>" class="ride" style="position:
    relative; top: -15px" />
    <!-- Hide the caption <?php echo
    $row_current_Ride['caption']; ?> -->
    <?php
    mysql_free_result($current_Ride);
    mysql_free_result($next_Ride);
    mysql_free_result($previous_Ride);
    ?>
    Again, I have a decent sense of what to do with PHP, but I'll
    use any help that I can receive. Thanks!
    Kevin

  • Cant add recordset navigation / paging...ERROR HELP

    I have the above recordset below
    $query_Recordset1 = sprintf("SELECT tk_job_title, tk_job_location, tk_job_salary, LEFT(tk_job_desc,200) as truncated_job_desc FROM think_jobsearch WHERE tk_job_title LIKE %s OR tk_job_location LIKE %%"text")%% OR tk_job_salary LIKE %s", GetSQLValueString("%" . $var_tk_job_title_Recordset1 . "%", "text"),GetSQLValueString($var_tk_job_location_Recordset1, "text"));
    $query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
    $Recordset1 = mysql_query($query_limit_Recordset1, $hostprop) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    a syntax error is being shown on the top line
    when i tried to add a recordset navigation (below)
    <table border="0">
                      <tr>
                        <td><?php if ($pageNum_Recordset1 > 0) { // Show if not first page ?>
                            <a href="<?php printf("%s?pageNum_Recordset1=%d%s", $currentPage, 0, $queryString_Recordset1); ?>">First</a>
                            <?php } // Show if not first page ?></td>
                        <td><?php if ($pageNum_Recordset1 > 0) { // Show if not first page ?>
                            <a href="<?php printf("%s?pageNum_Recordset1=%d%s", $currentPage, max(0, $pageNum_Recordset1 - 1), $queryString_Recordset1); ?>">Previous</a>
                            <?php } // Show if not first page ?></td>
                        <td><?php if ($pageNum_Recordset1 < $totalPages_Recordset1) { // Show if not last page ?>
                            <a href="<?php printf("%s?pageNum_Recordset1=%d%s", $currentPage, min($totalPages_Recordset1, $pageNum_Recordset1 + 1), $queryString_Recordset1); ?>">Next</a>
                            <?php } // Show if not last page ?></td>
                        <td><?php if ($pageNum_Recordset1 < $totalPages_Recordset1) { // Show if not last page ?>
                            <a href="<?php printf("%s?pageNum_Recordset1=%d%s", $currentPage, $totalPages_Recordset1, $queryString_Recordset1); ?>">Last</a>
                            <?php } // Show if not last page ?></td>
                      </tr>
                  </table>

    I have the same problem. Sorry I can't add any help. Trying
    to figure this out as well.

  • Recordset Navigation bar

    Hi There,
    I'm looking for a way to run the navigation through the pages smoothly. Right now it's "jumpy" and annoying.
    On this page:
    http://martinique.org/martiniquenew/discovery/towns-villages.php
    you will see the page jumping when we navigate through the towns table.
    I understand that the page re-loads itself naturally when using the Recordset Navigation Bar.
    I have added a javascript function in the buttons navigation links to make the page staying at the same level instead of going back to the top.
    Is there a way to make the page not to reload so I could have a smooth navigation?
    I would still like to insert the data from the database.
    Thanks for your help!

    boloco wrote:
    Is there a way to make the page not to reload so I could have a smooth navigation?
    I would still like to insert the data from the database.
    You would need to use Ajax to refresh the page content without reloading. One way of doing this would be to use a recordset to load all the database results into an HTML table, and then use a Master/Detail Spry Data Set. You can see an example of this in action on my website at http://foundationphp.com/dwcs4/gallery_select.php. Even on a fast connection, you will probably notice that the page first loads into a table, and immediately rebuilds. Then, whenever you click one of the descriptions on the left, the page refreshes without reloading. Dreamweaver CS4 builds most of the code automatically.

  • Recordset Navigation

    Afternoon all,
    I am in search of a good tutorial to help me make better
    recordset navigation using CS3. I currently use the standard
    << first < previous > next > last >> type, but
    would like to do it like the pro sites, where its numbered as well
    as the next/previous links.
    I have found a nice extension by Tom Muck, which will be my
    last point of call if I can not find a good tuturial.
    Cheers,
    Steve

    Dooza,
    There are help items that help out with the display of "page
    # of #" etc. Try this out:
    http://livedocs.adobe.com/en_US/Dreamweaver/9.0/help.html?content=WSc78c5058ca073340dcda91 10b1f693f21-7971.html
    This also might help
    http://livedocs.adobe.com/en_US/Dreamweaver/9.0/help.html?content=WSc78c5058ca073340dcda91 10b1f693f21-7973.html
    If those links don't work use the help in DW and navigate to:
    Making pages dynamic/Displaying database records/Custom
    recordset navigation bars
    Hope that helps. I've been having trouble getting the
    fwd,back,prvs, first buttons to work at all. Not sure what I'm
    doing wrong.

  • Cannot get recordset navigation to work

    I've created a search results page with a recordset titled
    rsPhoneList. Here is the code for it that DW created:
    SELECT *
    FROM DistrictPhoneList
    WHERE EmpName LIKE %colname%
    When I run a test on it, it displays 17 of my records when I
    put in a few letters for a name and indeed there are 17 records.
    That works great. For the repeat region, I changed it to show 10
    records at a time. When I do the search, it comes up with 10
    records.
    However, the navigation bar will not work. I go to Insert,
    Dynamic Data, Recordset Paging, Recordset Navigation. It created my
    recordset navigation bar. I save and upload. When I do the search
    it shows me the first 10 records. When I click Next, it shows me an
    empty table with the correct headings, but no records. Nothing
    works, the previous, next, last. Here is the code it created:
    <table border="0">
    <tr>
    <td><?php if ($pageNum_rsPhoneNames > 0) { //
    Show if not first page ?>
    <a href="<?php printf("%s?pageNum_rsPhoneNames=%d%s",
    $currentPage, 0, $queryString_rsPhoneNames);
    ?>">First</a>
    <?php } // Show if not first page ?>
    </td>
    <td><?php if ($pageNum_rsPhoneNames > 0) { //
    Show if not first page ?>
    <a href="<?php printf("%s?pageNum_rsPhoneNames=%d%s",
    $currentPage, max(0, $pageNum_rsPhoneNames - 1),
    $queryString_rsPhoneNames); ?>">Previous</a>
    <?php } // Show if not first page ?>
    </td>
    <td><?php if ($pageNum_rsPhoneNames <
    $totalPages_rsPhoneNames) { // Show if not last page ?>
    <a href="<?php printf("%s?pageNum_rsPhoneNames=%d%s",
    $currentPage, min($totalPages_rsPhoneNames, $pageNum_rsPhoneNames +
    1), $queryString_rsPhoneNames); ?>">Next</a>
    <?php } // Show if not last page ?>
    </td>
    <td><?php if ($pageNum_rsPhoneNames <
    $totalPages_rsPhoneNames) { // Show if not last page ?>
    <a href="<?php printf("%s?pageNum_rsPhoneNames=%d%s",
    $currentPage, $totalPages_rsPhoneNames, $queryString_rsPhoneNames);
    ?>">Last</a>
    <?php } // Show if not last page ?>
    </td>
    </tr>
    </table>
    What am I doing wrong or what can I do to get it to work
    correctly and show me the rest of the records in the recordset.
    Thanks,
    --Linda

    On the search page, using Post doesn't seem to work with the
    Recordset Paging, Insert Navigation bar. I did some further reading
    and saw that someone else had the issue as well and changed to GET.
    I did that and now everything works.

  • Recordset navigation code bug

    If you insert a Recordset Navigation Bar for a recordset called (say) Images the following code is generated (by CS6 and previous, at least):
    if (isset($_GET['totalRows_rsImages'])) {
      $totalRows_rsImages = $_GET['totalRows_rsImages'];
    } else {
      $all_rsImages = mysql_query($query_rsImages);
      $totalRows_rsImages = mysql_num_rows($all_rsImages);
    If you later rely on a Show if Recordset is Empty/Not Empty behaviour then there is an opportunity for a (potentially malicious) command line alteration to return an incorrect result, e.g. that the recordset is not empty when it actually is. In otherwords, if someone changes or adds a url parameter called totalRows_rsImages the above code will set $totalRows_rsImages above to that value, whether or not the query has returned records.
    A subsequent call to:
    if ($totalRows_rsImages == 0) { // Show if recordset empty
    will show the region, even if the recordset is empty.
    This caught me out, and Adobe should fix it by renaming $totalRows_rsImages to something else where appropriate.

    This caught me out, and Adobe should fix it by renaming
    $totalRows_rsImages to something else where appropriate.
    Yeah, or re-check to make sure it's within range. Not sure how that could be exploited. Forget about Adobe fixing it - they've completely discontinued support of server behaviors.

  • Projector navigation  help

    Hi there.
    I hope this isn't too confusing...
    I have built a projector for a cd-rom presentation and
    everything's going well. My interface and drop-down navigation are
    all loaded into a shell file and are on the top level. All swf's
    are then loaded into a level below the navigation. My main issue is
    figuring out if this drop-down menu navigation can load a swf and
    then move the playhead to a designated frame.
    i.e. "About" is the primary button. OnRelease reveals a
    drop-down menu in which there are 4 secondary buttons,
    "Introduction," "History," "Client List," and "Capabilities." Each
    of these secondary buttons are designated to sections in one larger
    swf. Upon clicking on one of these I would like to load the swf
    into a designated level and move the playehead to it's
    corresponding frame label. Problem is, it takes a few seconds to
    load the swf into the level because the projector is pulling it
    from the disc thus skipping the code telling it to play the
    corresponding frame label. It ends up just loading the swf and
    playing it on the 1st frame.
    One solution is to make the primary "About" button load the
    corresponding swf. Then all the secondary buttons in the drop down
    would just call to that level {_level18.gotoAndPlay(introTwo);} I
    want to find another way around this because I didn't want to load
    content on the primary button. I wanted to provide the options
    first then let them choose which section.
    Hope you can help!!
    Thank you for your time!!

    you must wait until loading is complete before executing your
    goto methods. ie, use preloader code to ensure _level18 is loaded
    before you execute your _level18.gotoAndPlay().

  • IView Navigation Help

    Hi Experts,
    How can I navigate from a Nested iView to another Nested iView one level up?
    My application is such that the Parent iView contains multiple Nested iViews, which individually contain the logic to Book Holidays, Display Holidays, and Modify Holidays etc. After creating a holiday request, I want the application to jump to the Display Holidays iView, where the new request can be seen on a graph. The problem is the iView I want to navigate to is one level above where the Create logic is so I can't map an event from the Create Form's submission to the Display iView.
    I've tried using the 'Navigate' components under connectors (which sounds perfect) but this is an unsupported component and doesn't work (on our setup).
    For clarity, the application's structure can be visualised as:
    Holiday Application (Parent iView)
    ...1. Display Holidays (Nested iView)
    ...2. Create Holidays (Nested iView)
    ........2.1 Submit Form (event)
    ...3. Modify Holidays (Nested iView)
    ........3.1 Submit Form (event)
    After submitting the form I want to jump to the Display Holidays nested iView.
    Any help would be greatly appreciated.
    Best regards,
    Andrew

    hi,
    First let me confirm if i understood your problem correctly.
    You have 3 nested iviews display holidays, Create holidays, and modify holidays.
    From display holidays you are navigating to create holidays and modify holidays.
    once you navigate to create holidays or modify holidays and after creating or modifying the holidays you will press a button on the form, once you press this button you want to go back to the display holidays.
    what are the other things that you have in the layers along with the nested iviews. If you dont have anything other than nested iviews use the following steps.
    1. Remove the layers and keep only the nested iviews.
    2. create a data store to store the value for the action in display holidays. for eg: when you click on create holidays store 'Create' and when you click on modify holidays store 'modify'. now use the outport and assign the value stored in the data store.
    3. Create a similar data store in create holidays and display holidays and assign the values 'displayholidays' to both these actions.
    4. Create a data store in the main screen that is in the level where you have all the nested iviews and connect all the outports to this datastore and assign the corresponding values coming from the nested iviews.
    5. set the visibility condition on all the nested iviews. eg: visibility condition for display holidays will be true when the store@maindatastore=='displayholidays' and visibility condition for create will be true when store@maindatastore=='create'.
    by doing this you will see only that screen which will satisfy the condition.
    let me know if this solves your problem.
    Regards,
    Rk.

  • Recordset Structure Help

    Hi.
    I'm new to XI and I'm currently trying to build a simple File to File scenario. I have a flat file that looks like:
    name,address,id,age,....
    name....
    so each element is comma seperated and each record is on a new line.
    I have a DT that looks like:
    DT_Flat_File
    -name
    -address
    -id
    etc
    I am currently building the Comunication Channel for the pickup and i dont know what to put into the "Recordset Structure" field.
    Any help would be appreciated, and maybe a summary of what can go into this field also.
    Thanks
    Gareth

    make the DT as
    DT_Flat_File
    -Root
    name
    address
    id
    etc
    so that name, id etc comes under root
    Now your recordset is root.
    In the other case;
    DT_Flat_File
    -name
    -address
    -id
    you will not be able to provide a recordset and it wudnt be possible to read the file using content conversion.

  • Dreamweaver recordset query help!

    HI im building a search page on dreamweaver based on bars clubs and pubs. At the moment i have 3 checkboxes labelled Bar, Club and pub with list/menu. I want the checkboxes so that when 1 is clicked eg Club it will come up with all the clubs in the database. However at the moment when i click that it comes up with the right amount of records but with clubs, bars and pubs.
    Also i want it so that if i select Clubs and Pubs in the checkboxes, or all 3 checkboxes selected, it will come up with all the Clubs and Pubs in the database and so forth.
    This is the SQL query in the recordset i created to get the values from the search page. I think this is wherte its going wrong
    SELECT *
    FROM `places`
    WHERE `Town` LIKE %area% AND `MusicGenre` LIKE %music% AND (`DisabledAcess` = 'Yes' OR da1 ='0' ) AND (`Club/Bar/Pub` = 'Club' OR club1 = '0') AND (`Club/Bar/Pub` = 'Pub' OR pub1 = '0') AND (`Club/Bar/Pub` = 'Bar' OR bar1 = '0')
    ORDER BY `Name` ASC
    Help Please!

    Checkbox's won't exist on the submitted page unless they are ticked.
    so i might do something like: ( untested )
    SELECT
    FROM `places`
    WHERE
    `Town` LIKE %area%
    AND `MusicGenre` LIKE %music%
    AND (`DisabledAcess` = 'Yes' OR da1 ='0' )
    <cfif isdefined("form.club)" OR isdefined("form.pub)" OR isdefined("form.bar)">
    AND
       <cfif isdefined("form.club)">
               `Club/Bar/Pub` = 'Club'  OR
       </CFIF>
       <cfif isdefined("form.PUB)">
               `Club/Bar/Pub` = 'pub'  OR
       </CFIF>
       <cfif isdefined("form.BAR)">
               `Club/Bar/Pub` = 'bar'  OR
       </CFIF>
       1 = 2
    </cfif>
    ORDER BY
    `Name` ASC
    PS. Its a bad idea to name a database field something like `Club/Bar/Pub` ( but i assume that just an example, and not real)

  • Recordset connections help

    I am trying to create a page that is based off my computer
    (localhost) (.asp files) and I am having trouble with the recordset
    connections. I do not understand the connection string. I've got
    the DataSource right, just not the Provider. Could someone please
    help?

    make the DT as
    DT_Flat_File
    -Root
    name
    address
    id
    etc
    so that name, id etc comes under root
    Now your recordset is root.
    In the other case;
    DT_Flat_File
    -name
    -address
    -id
    you will not be able to provide a recordset and it wudnt be possible to read the file using content conversion.

  • Recordset Nav Help

    I'm sure this is something simple, but...
    I have a recordset that pages at 25 records. The first call
    page comes up fine but when I advance the recordset, it adds a
    directory prior to the index.asp page.
    As in
    http://www.thequestfor.com/
    - becomes -
    http://www.thequestfor.com/TQF/index.asp?offset=25
    The directory layer it's adding /TQF/ is a valid directory
    (it's actually the root of the domain) but any idea why it's being
    added? And what's pulling it?
    Any help would be appreciated.
    Thanks,
    Ron

    make the DT as
    DT_Flat_File
    -Root
    name
    address
    id
    etc
    so that name, id etc comes under root
    Now your recordset is root.
    In the other case;
    DT_Flat_File
    -name
    -address
    -id
    you will not be able to provide a recordset and it wudnt be possible to read the file using content conversion.

  • Recordset Code Help

    Hi Guys and Gals,
    I need a bit of help. I have the following code. What I need
    to do is to replace www.coke.com with the web address that is
    stored in the recordset. I cannot manage to figure out a way to do
    this.
    Anyone able to help.........
    Cheers
    James

    <div align="right"><font face="Verdana, Arial,
    Helvetica, sans-serif"
    size="1"><a
    href="<%=(Recordset1.Fields.Item('Website').Value)%>"><font
    color="#FFFFFF">..</font></a></font></div>
    By the way, don't use <font> tags - use CSS instead.
    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
    ==================
    "Superkopite" <[email protected]> wrote in
    message
    news:gl7b1b$mu7$[email protected]..
    > Hi Guys and Gals,
    >
    > I need a bit of help. I have the following code. What I
    need to do is to
    > replace www.coke.com with the web address that is stored
    in the recordset.
    > I
    > cannot manage to figure out a way to do this.
    >
    > Anyone able to help.........
    >
    > Cheers
    >
    > James
    >
    >
    > <div align="right"><font face="Verdana, Arial,
    Helvetica, sans-serif"
    > size="1"><a
    > href="
    http://www.coke.com"><%=(Recordset1.Fields.Item("Website").Value)%><font
    >
    color="#FFFFFF">..</font></a></font></div>
    >

  • MAP & NAVIGATION HELP

    i am planning to buy a N78 or N82
    my dealer said its come with 3months navigation license.
    but after this period what are functionality will dead ?
    will nokia map work ?
    i am confused within GPS, Map Application and Navigation . ..
    NEWBOSS
    ::N73::

    Hi newboss
    It is just the "voice navigation" feature that will cease to function, you can still find your position on map, plan journeys but you won't get real time instructions unless you purchase a new license.
    Happy to have helped forum in a small way with a Support Ratio = 37.0

Maybe you are looking for

  • Excise invoice in INR and Billing document in EURO.development issue.

    Dear All its  intersesting development i came accross please help if u have came accross this before. in my scenario i am having a  client who placed an order from Europe and the currency is in EURO  and we have to deliver it to a client who is in in

  • Why do I keep getting the message "Photoshop Elements 13 Editor has stopped working" when I try to open Photoshop?

    Every time I try to launch Photoshop it stops working. Adobe customer support was not able to help me resolve the issue. Does anyone have a fix? Thank you

  • Connet by prior

    hi friends i have table like tree table data; id  parent id name type 1                   a       type1 2       1          b       type2 3       2          c       type1 4       3          d       type2 i can create tree from this table with connect

  • Holly cow!

    Why is Skype ... ?! I wish there still was functionality of Live Messenger! But get to the problem. First: how to link up my Skype accoun with Outlook account? When i get logged to live:login it shows that the account is connected together with my Mi

  • Kernel Patch Upgrade

    Hi all, We have our production system which is on ECC 6.0 with Oracle 10.2.0.2.The CI is on HP-Ux and there are 3 Application servers on Linux. All are on kernel patch level 95 and we need to update the kernel patch level to 124 in all the CI+apps I