Edit info on Results Page

Hi there,
DW 8.0.2 ; ASP VBScript and MS Access 2000
On a web site, I have a page which displays with a "30"
repeat region,
all registered customers.
Is it possible, and how, to have on this page a "Delete"
button as well
as an "Edit" button. With every record, I have two text boxes
linked to
the information in the DB. I want to be able to change this
info on the
same page as well as delete it, where necessary.
Or, do I have to have a detailed page for what I want to do.
Regards,
Deon

Deon
Did you see Vicky's answer to your other post for this same
thing? Her way
is good and you can also use commands in your recoredset.
Dave
"Deon" <[email protected]> wrote in message
news:ekj4cm$chh$[email protected]..
> Hi there,
>
> sorry for not putting my question correctly.
> The page I have built, is a maintenance page for myself
as the admin.
> People who want to update or delete their info, do so on
a separate
> page. This page is password & access level
protected.
>
> Regards,
> Deon
>
>
>
> Baxter wrote:
> > When you say you have 30 registered customers per
page, would it be
> > practical for a customer to be able to edit or
delete the data of an
other
> > customer?
> > I think If a customer wants to change the info you
should make them log
in
> > to a page to change only data that applies to that
customer.
> > Set up a login with username and password, set a
session to the username
> > that takes them to a form with their info already
filed in from their
info
> > in the database
> > and then do a update back to the database from the
form. Just my way of
> > thinking on this.
> > Dave
> > "Deon" <[email protected]> wrote
in message
> > news:ekgu1u$kef$[email protected]..
> >> Hi there,
> >>
> >> DW 8.0.2 ; ASP VBScript and MS Access 2000
> >>
> >> On a web site, I have a page which displays
with a "30" repeat region,
> >> all registered customers.
> >>
> >> Is it possible, and how, to have on this page a
"Delete" button as well
> >> as an "Edit" button. With every record, I have
two text boxes linked to
> >> the information in the DB. I want to be able to
change this info on the
> >> same page as well as delete it, where
necessary.
> >>
> >> Or, do I have to have a detailed page for what
I want to do.
> >>
> >> Regards,
> >> Deon
> >
> >

Similar Messages

  • Contribute CS4 on Windows 7 64 bit - Attempting to edit existing website results in a blank page

    Hi,
    I am an IT Tech and not an Adobe Contribute user so my apologies in advance for wrong terminology.
    I just installed a new Windows 7 64 bit PC for a client and installed their copy of CS4 Contribute.
    When they attempt to edit their website the page being edited ends up blank.  We can't work out why.
    The same software was on an Windows XP PC and is the same website that they could edit previously without any problems.
    Can anyone assist with settings or advice on potential incompatibility issues?
    Thanks
    Chris

    Chris
    This one is most likely related to permissions - Contribute simply does not have access to write the temporary file, but still attempts to anyway (resulting in a file being created / cleared on the server, but no actual information being written to the file).
    This still appeared to be a problem even when running the application in Administrator mode.
    I may get flamed by the super security-concience techs, but this worked for me:
    Find the location of the temporary site / draft folder (default is C:\Users\username\AppData\Local\Adobe\Contribute CS4\en_US\Sites)
    Select the folders in the "Sites" folder
    Right-click one of them and go to "Properties"
    Click the security tab and click "Edit"
    Add the user "Everyone"
    Select the "Everyone" user and check "Full Control"
    Hit OK, then OK again
    I can't guarantee it will work, but see how you go.
    Thanks
    Dan

  • Editing results page text

    Dear All,
    I am currently trailing the product and would like to ask if
    any of you can confirm if it is possible to edit the results page
    text.
    Currently feedback gives a “failure” or
    “Pass” rating and it is this text I would like to
    change.
    With thanks in advance, J.

    Hi Rick
    Thanks for the quick response.
    May be I am being dumb, but as I am just beginning to tinker
    I forgive myself ;o) I am specifically referring to the message
    “Sorry, you failed” bottom left of the results page as
    appose to the quiz manager editable fields (default labels etc..)]
    If there is a way of editing the you failed message could you
    send me a URL to relevant help as so far not had any luck in
    locating any.
    Best, J

  • Having trouble displaying images on my results page

    I have tried placing the following code (<img src="*<?php echo $row_rsppleresults['picture_upload']; ?>*>) BOLDED AREA (see code below very last entry) in hopes that it would display the image. However, what happens after I place the code in that location is that I get an invalid code error that there is something wrong with the Italic BOLDED area (see below very last entry). In addition, to that it changes the html formatting on my page when I try to view the page and no image shows up.  As of right now when someone fills out the input form the photo automatically get uploaded into the following directory-/public_html/rescuealerts/fomdata/uploads_missing_person_form.  I am clueless how to connect the correct image with the correct input information in the search display table. Below you will find the following- my code for the results page and my dynamic table.  Everything else in the dynamic table displays correctly. It the images that I can seem to get displayed. Any help would be greatly appreciated.
    Results page:
    <?php require_once('../Connections/rescue.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $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"];
    $maxRows_rsppleresults = 10;
    $pageNum_rsppleresults = 0;
    if (isset($_GET['pageNum_rsppleresults'])) {
      $pageNum_rsppleresults = $_GET['pageNum_rsppleresults'];
    $startRow_rsppleresults = $pageNum_rsppleresults * $maxRows_rsppleresults;
    mysql_select_db($database_rescue, $rescue);
    $query_rsppleresults = "SELECT missing_name, `description`, picture_upload, missing_person_form.missing_name, missing_person_form.`description`, missing_person_form.picture_upload FROM missing_person_form";
    $query_limit_rsppleresults = sprintf("%s LIMIT %d, %d", $query_rsppleresults, $startRow_rsppleresults, $maxRows_rsppleresults);
    $rsppleresults = mysql_query($query_limit_rsppleresults, $rescue) or die(mysql_error());
    $row_rsppleresults = mysql_fetch_assoc($rsppleresults);
    if (isset($_GET['totalRows_rsppleresults'])) {
      $totalRows_rsppleresults = $_GET['totalRows_rsppleresults'];
    } else {
      $all_rsppleresults = mysql_query($query_rsppleresults);
      $totalRows_rsppleresults = mysql_num_rows($all_rsppleresults);
    $totalPages_rsppleresults = ceil($totalRows_rsppleresults/$maxRows_rsppleresults)-1;$maxRows_rsppleresults = 10;
    $pageNum_rsppleresults = 0;
    if (isset($_GET['pageNum_rsppleresults'])) {
      $pageNum_rsppleresults = $_GET['pageNum_rsppleresults'];
    $startRow_rsppleresults = $pageNum_rsppleresults * $maxRows_rsppleresults;
    $colname_rsppleresults = "-1";
    if (isset($_POST['missing_name'])) {
      $colname_rsppleresults = $_POST['missing_name'];
    mysql_select_db($database_rescue, $rescue);
    $query_rsppleresults = sprintf("SELECT missing_name, `description`, picture_upload FROM missing_person_form WHERE missing_name LIKE %s", GetSQLValueString("%" . $colname_rsppleresults . "%", "text"));
    $query_limit_rsppleresults = sprintf("%s LIMIT %d, %d", $query_rsppleresults, $startRow_rsppleresults, $maxRows_rsppleresults);
    $rsppleresults = mysql_query($query_limit_rsppleresults, $rescue) or die(mysql_error());
    $row_rsppleresults = mysql_fetch_assoc($rsppleresults);
    if (isset($_GET['totalRows_rsppleresults'])) {
      $totalRows_rsppleresults = $_GET['totalRows_rsppleresults'];
    } else {
      $all_rsppleresults = mysql_query($query_rsppleresults);
      $totalRows_rsppleresults = mysql_num_rows($all_rsppleresults);
    $totalPages_rsppleresults = ceil($totalRows_rsppleresults/$maxRows_rsppleresults)-1;
    $queryString_rsppleresults = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
      $params = explode("&", $_SERVER['QUERY_STRING']);
      $newParams = array();
      foreach ($params as $param) {
        if (stristr($param, "pageNum_rsppleresults") == false &&
            stristr($param, "totalRows_rsppleresults") == false) {
          array_push($newParams, $param);
      if (count($newParams) != 0) {
        $queryString_rsppleresults = "&" . htmlentities(implode("&", $newParams));
    $queryString_rsppleresults = sprintf("&totalRows_rsppleresults=%d%s", $totalRows_rsppleresults, $queryString_rsppleresults);
    ?>
    Here is my code for the dynamic table (this is also where I have been trying to edit the code to look for the images that were uploaded with the initial form.
    Dynamic Table:
        <tr>
          <td style="font-weight: normal; color: #000; font-family: Arial, Helvetica, sans-serif; font-size: 12px;"><div align="left"><?php echo $row_rsppleresults['missing_name']; ?></div></td>
          <td style="font-weight: normal; color: #000; font-family: Arial, Helvetica, sans-serif; font-size: 12px;"><div align="left"><?php echo $row_rsppleresults['description']; ?></div></td>
          <td style="font-weight: normal; color: #000; font-family: Arial, Helvetica, sans-serif; font-size: 12px;"><div align="left"><?php echo $row_rsppleresults['picture_upload']; ?></div></td>
        </tr>
        <?php } while ($row_rsppleresults = mysql_fetch_assoc($rsppleresults)); ?>
    </table>
    Thank you,
    hjohnson2011

        <tr>
          <td style="font-weight: normal; color: #000; font-family: Arial, Helvetica, sans-serif; font-size: 12px;"><div align="left"><?php echo $row_rsppleresults['missing_name']; ?></div></td>
          <td style="font-weight: normal; color: #000; font-family: Arial, Helvetica, sans-serif; font-size: 12px;"><div align="left"><?php echo $row_rsppleresults['description']; ?></div></td>
          <td style="font-weight: normal; color: #000; font-family: Arial, Helvetica, sans-serif; font-size: 12px;"><div align="left"><?php echo $row_rsppleresults['picture_upload']; ?></div></td>
        </tr>
        <?php } while ($row_rsppleresults = mysql_fetch_assoc($rsppleresults)); ?>
    </table>
    First off, you should style the table, rows and cells by using CSS. Also, there is no need for a div within the cell because, again, you can use CSS to do the styling for you. Not only that, depending on the DOCTYPE that has been used, tou will get an invalid markup when using align=left.
    Depending on what is included in the picture_upload field (just the name and extension or the complete path and file name) your markup should look like
    <table>
      <tr>
        <td><?php echo $row_rsppleresults['missing_name']; ?></td>
        <td><?php echo $row_rsppleresults['description']; ?></td>
        <td><img src="<?php echo $row_rsppleresults['picture_upload']; ?>"></td>
      </tr>
    </table>
    if the picture_upload field contains all of the info, or if it only contains the filename+extension
    <table>
      <tr>
        <td><?php echo $row_rsppleresults['missing_name']; ?></td>
        <td><?php echo $row_rsppleresults['description']; ?></td>
        <td><img src="escuealerts/fomdata/uploads_missing_person_form/<?php echo $row_rsppleresults['picture_upload']; ?>"></td>
      </tr>
    </table>
    Gramps

  • Manually launching a Task Results page

    I have a working end user workflow that I'd like to automatically redirect to the task results page. Specifically I want the user info details captured on creates and updates...specific attributes that changed. This is automatic when I look at the task under Server Tasks. I edited workItemEdit.jsp to go to requestResults.jsp on finish, but it doesn't have the task id to reference the details. Has anyone been able to do this?
    Thanks in advance,
    J

    Please cross-post in ADF forum -
    JDeveloper and ADF
    It should be possible.
    Regards,
    Anuj

  • HT3814 Why does iTunes on my MacBook Pro not remember/save edited info about CDs? It does on my G4.

    I haven't used iTunes in awhile to play CDs. Lately though it is not remembering CD info I put into iTunes. I have been using iTunes since the late 90s. I have always been able to edit info for ANY CD I play on iTunes and that computer would remember that info. Lately my MacBook Pro isn't remembering this info. I am able to edit CDs on my G4 Powerbok and it is remembering the info. (The G4 is using 10.4.11 and iTunes 9.2.1 (5). I am using 10.6.8 and iTunes 10.6.1 (7) on the MBP.) This used to work on the MBP but I haven't dealt with CDs in 6 months or so so I don't know more closley when this behavior changed.)
    I've had a go-rounds with Apple Care. Some say I have to import each track for iTunes to remember any edits on that track. I tried that today and that appears to be how things work now. That was not the case up until now. Has iTunes changed how it works?
    I realize that iTunes will read file names on the CD if they are burned into the CD. I used Toast for some recent CDs I burned on the MBP awhile ago and voila, those files names are appearing whern I pop the CD in. I cannot edit them so that iTunes remembers them though unless I import whatever track I wanted to edit the info from. OK. That's a step backwards but OK. (I realize I am not editing the info on the CD itself. Once a CD is burned that's impossible, I would only be editing the info that iTunes has about it...) Most of the CDs I have burned do not have track titles as file names.
    I know about the CD Info.cidb file. That is where info that I add manually (and info that Gracenote adds, which I also can edit...) gets saved. In the past I could edit ANY CD, regardless of where it came from, and that info would be saved in that file. That is not happening now.
    I have moved the CD Info.cidb file to my desktop and edited some info. ITunes is NOT creating a new CD Info.cidb file.
    So, has anything changed with iTunes or is there something else going on here? It could be a third-party app or an OS problem.
    Thanks for any help.
    Cheers,
    John L
    PS Apple Care is looking into this some more and will call me back next Thursday if not before then. My fingers are crossed that will have some info that is helpful. If I now have to import a track so that I can edit it (and save that info) on a CD, well, so be it but it doesn't seem to be a step forward...
    PPS For some reason, Apple put this under the iTunes Store. I would have put it under just iTunes. I forget the page where I asked the title of this question (which has since been edited). It then brought me to this particular forum. I would have moved it if I could...

    Basically anything not purchased from iTunes that is on my iPhone 6 will not sync over to my MacBook. I have tried to just manually back it up but only the purchased music will sync over to iTunes.

  • Adding Fields to People Search Results Page

    Hi
    Working in SharePoint Online, I've been able to add a few fields to the People Search results page successfully:
    Organization
    Office Locator
    Office Location
    Work Phone
    Mobile Phone
    Home Phone
    Work Email
    All of the above fields are working and display on the People search results page.
    I tried to add these and they simply do not display.  There is no error:
    University Email
    Assistant
    Calendar/Scheduling
    I set them up the same way.  I created the Property in the User Profile area.  I then populated the data for each user.  I then added the property as a Managed property (search schema) linked to the Crawled property from the People category.
    Made sure that they were query able, retrievable, searchable, etc.  Then I edited the People Search code and then I waited over the weekend for the search to pick them up.  I came into work this morning and they still do not display.  Here is
    my code, just in case I missed something.  Thanks.
    <html xmlns:mso="urn:schemas-microsoft-com:office:office" xmlns:msdt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882">
    <head>
    <title>UIF People Item with Work Phone</title>
    <!--[if gte mso 9]><xml>
    <mso:CustomDocumentProperties>
    <mso:TemplateHidden msdt:dt="string">0</mso:TemplateHidden>
    <mso:MasterPageDescription msdt:dt="string">Displays a result tailored for a person.</mso:MasterPageDescription>
    <mso:ContentTypeId msdt:dt="string">0x0101002039C03B61C64EC4A04F5361F385106603</mso:ContentTypeId>
    <mso:TargetControlType msdt:dt="string">;#SearchResults;#</mso:TargetControlType>
    <mso:HtmlDesignAssociated msdt:dt="string">1</mso:HtmlDesignAssociated>
    <mso:CrawlerXSLFile msdt:dt="string"></mso:CrawlerXSLFile>
    <mso:ManagedPropertyMapping msdt:dt="string">'AboutMe':'AboutMe','AccountName':'AccountName','BaseOfficeLocation':'BaseOfficeLocation','Department':'Department','HitHighlightedProperties':'HitHighlightedProperties','Interests':'Interests','JobTitle':'JobTitle','Organization':'Organization','LastModifiedTime':'LastModifiedTime','Memberships':'Memberships','PastProjects':'PastProjects','Path':'Path','PictureURL':'PictureURL','PreferredName':'PreferredName','Responsibilities':'Responsibilities','Schools':'Schools','ServiceApplicationID':'ServiceApplicationID','SipAddress':'SipAddress','Skills':'Skills','UserProfile_GUID':'UserProfile_GUID','WorkEmail':'WorkEmail','UniversityEmail':'UniversityEmail','OfficeNumber':'OfficeNumber','OfficeLocator':'OfficeLocator','WorkPhone':'WorkPhone','MobilePhone':'MobilePhone','HomePhone':'HomePhone','Assistant':'Assistant','CalendarScheduling':'CalendarScheduling','WorkId':'WorkId','YomiDisplayName':'YomiDisplayName'</mso:ManagedPropertyMapping>
    <mso:HtmlDesignStatusAndPreview msdt:dt="string">https://uif.sharepoint.com/search/_catalogs/masterpage/Display Templates/Search/UIF_Item_Person.html, Conversion successful.</mso:HtmlDesignStatusAndPreview>
    <mso:HtmlDesignConversionSucceeded msdt:dt="string">True</mso:HtmlDesignConversionSucceeded>
    <mso:HtmlDesignPreviewUrl msdt:dt="string"></mso:HtmlDesignPreviewUrl>
    </mso:CustomDocumentProperties>
    </xml><![endif]-->
    </head>
    <body>
    <div id="Item_Person">
    <!--#_
    if(!$isNull(ctx.CurrentItem) && !$isNull(ctx.ClientControl)){
    var id = ctx.ClientControl.get_nextUniqueId();
    var itemId = id + Srch.U.Ids.item;
    var hoverId = id + Srch.U.Ids.hover;
    $setResultItem(itemId, ctx.CurrentItem);
    var container_id = id + "_peopleContainer";
    var hhProps = Srch.U.createXMLDocument("<root>" + ctx.CurrentItem.HitHighlightedProperties + "</root>");
    var encodedPath = $urlHtmlEncode(ctx.CurrentItem.Path);
    var has_pn = !$isEmptyString(ctx.CurrentItem.PreferredName);
    var has_sip = !$isEmptyString(ctx.CurrentItem.SipAddress);
    var has_email = !$isEmptyString(ctx.CurrentItem.WorkEmail);
    var has_universityemail = !$isEmptyString(ctx.CurrentItem.UniversityEmail);
    var has_onumber = !$isEmptyString(ctx.CurrentItem.OfficeNumber);
    var has_bolocation = !$isEmptyString(ctx.CurrentItem.BaseOfficeLocation);
    var has_olocator = !$isEmptyString(ctx.CurrentItem.OfficeLocator);
    var has_wphone = !$isEmptyString(ctx.CurrentItem.WorkPhone);
    var has_mphone = !$isEmptyString(ctx.CurrentItem.MobilePhone);
    var has_hphone = !$isEmptyString(ctx.CurrentItem.HomePhone);
    var has_assistant = !$isEmptyString(ctx.CurrentItem.Assistant);
    var has_calendarscheduling = !$isEmptyString(ctx.CurrentItem.CalendarScheduling);
    var has_jt = !$isEmptyString(ctx.CurrentItem.JobTitle);
    var has_dp = !$isEmptyString(ctx.CurrentItem.Department);
    var has_org = !$isEmptyString(ctx.CurrentItem.Organization);
    var has_abme = !$isEmptyString(ctx.CurrentItem.AboutMe);
    var has_resp = !$isEmptyString(ctx.CurrentItem.Responsibilities);
    var has_pp = !$isEmptyString(ctx.CurrentItem.PastProjects);
    var has_ski = !$isEmptyString(ctx.CurrentItem.Skills);
    var has_sch = !$isEmptyString(ctx.CurrentItem.Schools);
    var has_int = !$isEmptyString(ctx.CurrentItem.Interests);
    var has_vlm = !$isEmptyString(ctx.CurrentItem.ProfileViewsLastMonth);
    var has_vlw = !$isEmptyString(ctx.CurrentItem.ProfileViewsLastWeek);
    var has_query = !$isEmptyString(ctx.CurrentItem.ProfileQueriesFoundYou);
    var isSelfSrch = (has_vlm == true || has_vlw == true || has_query == true);
    var delimiter = "";
    var userPersonaId = $htmlEncode(id) + "_peopleUserPersona";
    var uSip = ctx.CurrentItem.SipAddress;
    var uEmail = ctx.CurrentItem.WorkEmail;
    var uName = ctx.CurrentItem.PreferredName;
    var uPicUrl = ctx.CurrentItem.PictureURL;
    var hoverUrl = "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Person_HoverPanel.js";
    _#-->
    <div id="_#= $htmlEncode(container_id) =#_" class="ms-srch-people-outerContainer ms-srch-resultHover">
    <div id="_#= $htmlEncode(itemId) =#_" name="Item" class="ms-srch-people-item" onmouseover="EnsureScriptParams('SearchUI.js', 'HP.Init', event, '_#=$scriptEncode(itemId) =#_', '_#=$scriptEncode(hoverId) =#_', '_#=$scriptEncode(hoverUrl) =#_');" onmouseout="EnsureScriptParams('SearchUI.js', 'HP.Hide');">
    <div id="_#= $htmlEncode(hoverId) =#_" class="ms-srch-hover-outerContainer"></div>
    <div id="UserPersonaContainer">
    <div id="UserPersona">
    <div id="_#= userPersonaId =#_"></div>
    </div>
    </div>
    <div id="UserInfoContainer">
    <div id="ContactInfo">
    <div id="NameField">
    <!--#_
    var encodedName = (has_pn == true) ? $htmlEncode(ctx.CurrentItem.PreferredName) : $htmlEncode(ctx.CurrentItem.YomiDisplayName);
    var displayName = Srch.U.getSingleHHXMLNodeValue(hhProps, "preferredname");
    if ($isEmptyString(displayName)) { displayName = encodedName }
    _#-->
    <div id="NameValue" class="ms-srch-ellipsis ms-textLarge">
    <a clicktype="Result" id="NameFieldLink" href="_#= encodedPath =#_" title="_#= encodedName =#_">_#= displayName =#_</a>
    </div>
    </div>
    <!--#_
    if(has_jt == true) {
    _#-->
    <div id="JobTitleField">
    <!--#_
    var encodedJtitle = $htmlEncode(ctx.CurrentItem.JobTitle);
    var displayJtitle = Srch.U.getSingleHHXMLNodeValue(hhProps, "jobtitle");
    if ($isEmptyString(displayJtitle)) { displayJtitle = encodedJtitle }
    _#-->
    <div id="JobTitleValue" class="ms-srch-ellipsis" title="_#= encodedJtitle =#_"> _#= displayJtitle =#_ </div>
    </div>
    <!--#_
    _#-->
    <!--#_
    if(has_dp == true) {
    _#-->
    <div id="DepartmentField">
    <!--#_
    var encodedDept = $htmlEncode(ctx.CurrentItem.Department);
    var displayDept = Srch.U.getSingleHHXMLNodeValue(hhProps, "department");
    if ($isEmptyString(displayDept)) { displayDept = encodedDept }
    _#-->
    <div id="DepartmentValue" class="ms-srch-ellipsis" title="_#= encodedDept =#_"> <b>_#= displayDept =#_</b> </div>
    </div>
    <!--#_
    _#-->
    <!--#_
    if(has_org == true) {
    _#-->
    <div id="Organization">
    <!--#_
    var encodedorg = $htmlEncode(ctx.CurrentItem.Organization);
    var displayorg = Srch.U.getSingleHHXMLNodeValue(hhProps, "Organization");
    if ($isEmptyString(displayorg)) { displayorg = encodedorg }
    _#-->
    <div id="OrganizationValue" class="ms-srch-ellipsis" title="_#= encodedorg =#_"> _#= displayorg =#_ </div>
    </div>
    <!--#_
    _#-->
    <hr>
    <!--#_
    if(has_olocator == true) {
    _#-->
    <div id="OfficeLocator">
    <!--#_
    var encodedolocator = $htmlEncode(ctx.CurrentItem.OfficeLocator);
    var displayolocator = Srch.U.getSingleHHXMLNodeValue(hhProps, "OfficeLocator");
    if ($isEmptyString(displayolocator)) { displayolocator = encodedolocator }
    _#-->
    <div id="OfficeLocatorValue" class="ms-srch-ellipsis" title="_#= encodedolocator =#_"> <b>Office Locator:</b> <a clicktype="Result" id="NameFieldLink" href="_#= ctx.CurrentItem.OfficeLocator =#_">_#= ctx.CurrentItem.OfficeNumber =#_</a></div>
    </div>
    <!--#_
    _#-->
    <!--#_
    if(has_bolocation == true) {
    _#-->
    <div id="OfficeBaseLocation">
    <!--#_
    var encodedbolocation = $htmlEncode(ctx.CurrentItem.BaseOfficeLocation);
    var displaybolocation = Srch.U.getSingleHHXMLNodeValue(hhProps, "BaseOfficeLocation");
    if ($isEmptyString(displaybolocation)) { displaybolocation = encodedbolocation }
    _#-->
    <div id="BaseOfficeLocationValue" class="ms-srch-ellipsis" title="_#= encodedbolocation =#_"> <b>Office Location:</b> _#= displaybolocation =#_ </div>
    </div>
    <hr>
    <!--#_
    _#-->
    <!--#_
    if(has_wphone == true) {
    _#-->
    <div id="WorkPhone">
    <!--#_
    var encodedwphone = $htmlEncode(ctx.CurrentItem.WorkPhone);
    var displaywphone = Srch.U.getSingleHHXMLNodeValue(hhProps, "WorkPhone");
    if ($isEmptyString(displaywphone)) { displaywphone = encodedwphone }
    _#-->
    <div id="WorkPhoneValue" class="ms-srch-ellipsis" title="_#= encodedwphone =#_"> <b>Office Phone:</b> _#= displaywphone =#_ </div>
    </div>
    <!--#_
    _#-->
    <!--#_
    if(has_mphone == true) {
    _#-->
    <div id="MobilePhone">
    <!--#_
    var encodedmphone = $htmlEncode(ctx.CurrentItem.MobilePhone);
    var displaymphone = Srch.U.getSingleHHXMLNodeValue(hhProps, "MobilePhone");
    if ($isEmptyString(displaymphone)) { displaymphone = encodedmphone }
    _#-->
    <div id="MobilePhoneValue" class="ms-srch-ellipsis" title="_#= encodedmphone =#_"> <b>Mobile Phone:</b> _#= displaymphone =#_ </div>
    </div>
    <!--#_
    _#-->
    <!--#_
    if(has_hphone == true) {
    _#-->
    <div id="HomePhone">
    <!--#_
    var encodedhphone = $htmlEncode(ctx.CurrentItem.HomePhone);
    var displayhphone = Srch.U.getSingleHHXMLNodeValue(hhProps, "HomePhone");
    if ($isEmptyString(displayhphone)) { displayhphone = encodedhphone }
    _#-->
    <div id="HomePhoneValue" class="ms-srch-ellipsis" title="_#= encodedhphone =#_"> <b>Home Phone:</b> _#= displayhphone =#_ </div>
    </div>
    <!--#_
    _#-->
    <hr>
    <!--#_
    if(has_email == true) {
    _#-->
    <div id="WorkEmail">
    <!--#_
    var encodedemail = $htmlEncode(ctx.CurrentItem.WorkEmail);
    var displayemail = Srch.U.getSingleHHXMLNodeValue(hhProps, "WorkEmail");
    if ($isEmptyString(displayemail)) { displayemail = encodedemail }
    _#-->
    <div id="WorkEmailValue" class="ms-srch-ellipsis" title="_#= encodedemail =#_"> <b>Foundation Email:</b> _#= displayemail =#_ </div>
    </div>
    <!--#_
    _#-->
    <!--#_
    if(has_universityemail == true) {
    _#-->
    <div id="UniversityEmail">
    <!--#_
    var encodeduniversityemail = $htmlEncode(ctx.CurrentItem.UniversityEmail);
    var displayuniversityemail = Srch.U.getSingleHHXMLNodeValue(hhProps, "UniversityEmail");
    if ($isEmptyString(displayuniversityemail)) { displayuniversityemail = encodeduniversityemail }
    _#-->
    <div id="UniversityEmailValue" class="ms-srch-ellipsis" title="_#= encodeduniversityemail =#_"> <b>University Email:</b> _#= displayuniversityemail =#_ </div>
    </div>
    <!--#_
    _#-->
    <hr>
    <!--#_
    if(has_assistant == true) {
    _#-->
    <div id="Assistant">
    <!--#_
    var encodedassistant = $htmlEncode(ctx.CurrentItem.Assistant);
    var displayassistant = Srch.U.getSingleHHXMLNodeValue(hhProps, "Assistant");
    if ($isEmptyString(displayassistant)) { displayassistant = encodedassistant }
    _#-->
    <div id="AssistantValue" class="ms-srch-ellipsis" title="_#= encodedassistant =#_"> <b>Assistant:</b> _#= displayassistant =#_ </div>
    </div>
    <!--#_
    _#-->
    <!--#_
    if(has_calendarscheduling == true) {
    _#-->
    <div id="CalendarScheduling">
    <!--#_
    var encodedcalendarscheduling = $htmlEncode(ctx.CurrentItem.CalendarScheduling);
    var displaycalendarscheduling = Srch.U.getSingleHHXMLNodeValue(hhProps, "CalendarScheduling");
    if ($isEmptyString(displaycalendarscheduling)) { displaycalendarscheduling = encodedcalendarscheduling }
    _#-->
    <div id="CalendarSchedulingValue" class="ms-srch-ellipsis" title="_#= encodedcalendarscheduling =#_"> <b>Calendar/Scheduling:</b> _#= displaycalendarscheduling =#_ </div>
    </div>
    <!--#_
    _#-->
    <hr>
    </div>
    <!--#_
    if(has_resp == true || has_ski == true || has_pp == true || has_int == true || has_sch == true) {
    _#-->
    <div id="MoreInfoShort">
    <!--#_
    if(has_resp == true) {
    var encodedVal = Srch.U.getMultipleHHXMLNodeValues(hhProps, "responsibilities", 3, delimiter);
    if (Srch.U.e(encodedVal)) { encodedVal = $htmlEncode(Srch.U.getUnEncodedMultiValuedResults(ctx.CurrentItem.Responsibilities, 3, delimiter))}
    if (!Srch.U.e(encodedVal)) {
    _#-->
    <div id="ResponsibilitiesValue" class="ms-srch-ellipsis">
    <span id="FieldTitle" class="ms-soften"> _#= $htmlEncode(Srch.Res.item_People_Responsibilities) =#_ </span>
    _#= encodedVal =#_
    </div>
    <!--#_
    _#-->
    <!--#_
    } else if(has_ski == true) {
    var encodedVal = Srch.U.getMultipleHHXMLNodeValues(hhProps, "skills", 3, delimiter);
    if (Srch.U.e(encodedVal)) { encodedVal = $htmlEncode(Srch.U.getUnEncodedMultiValuedResults(ctx.CurrentItem.Skills, 3, delimiter))}
    if (!Srch.U.e(encodedVal)) {
    _#-->
    <div id="SkillsValue" class="ms-srch-ellipsis">
    <span id="FieldTitle" class="ms-soften"> _#= $htmlEncode(Srch.Res.item_People_Skills) =#_ </span>
    _#= encodedVal =#_
    </div>
    <!--#_
    _#-->
    <!--#_
    } else if(has_pp == true) {
    var encodedVal = Srch.U.getMultipleHHXMLNodeValues(hhProps, "pastprojects", 3, delimiter);
    if (Srch.U.e(encodedVal)) { encodedVal = $htmlEncode(Srch.U.getUnEncodedMultiValuedResults(ctx.CurrentItem.PastProjects, 3, delimiter))}
    if (!Srch.U.e(encodedVal)) {
    _#-->
    <div id="PastProjectsValue" class="ms-srch-ellipsis">
    <span id="FieldTitle" class="ms-soften"> _#= $htmlEncode(Srch.Res.item_People_PastProjects) =#_ </span>
    _#= encodedVal =#_
    </div>
    <!--#_
    _#-->
    <!--#_
    } else if(has_int == true) {
    var encodedVal = Srch.U.getMultipleHHXMLNodeValues(hhProps, "interests", 3, delimiter);
    if (Srch.U.e(encodedVal)) { encodedVal = $htmlEncode(Srch.U.getUnEncodedMultiValuedResults(ctx.CurrentItem.Interests, 3, delimiter))}
    if (!Srch.U.e(encodedVal)) {
    _#-->
    <div id="InterestsValue" class="ms-srch-ellipsis">
    <span id="FieldTitle" class="ms-soften"> _#= $htmlEncode(Srch.Res.item_People_Interests) =#_ </span>
    _#= encodedVal =#_
    </div>
    <!--#_
    _#-->
    <!--#_
    } else if(has_sch == true){
    var encodedVal = Srch.U.getMultipleHHXMLNodeValues(hhProps, "schools", 3, delimiter);
    if (Srch.U.e(encodedVal)) { encodedVal = $htmlEncode(Srch.U.getUnEncodedMultiValuedResults(ctx.CurrentItem.Schools, 3, delimiter))}
    if (!Srch.U.e(encodedVal)) {
    _#-->
    <div id="SchoolsValue" class="ms-srch-ellipsis">
    <span id="FieldTitle" class="ms-soften"> _#= $htmlEncode(Srch.Res.item_People_Schools) =#_ </span>
    _#= encodedVal =#_
    </div>
    <!--#_
    _#-->
    <!--#_
    _#-->
    </div>
    <!--#_
    _#-->
    <!--#_
    if(has_abme == true || has_ski == true || has_pp == true || has_int == true) {
    _#-->
    <div id="MoreInfoLong">
    <!--#_
    if(has_abme == true) {
    var encodedVal = Srch.U.getTrimmedProcessedHHXMLString(Srch.U.getSingleHHXMLNodeValue(hhProps, "aboutme"), 125);
    if (Srch.U.e(encodedVal)) { encodedVal = $htmlEncode(Srch.U.getTrimmedString(ctx.CurrentItem.AboutMe, 125)) }
    if (!Srch.U.e(encodedVal)) {
    _#-->
    _#= encodedVal =#_
    <!--#_
    _#-->
    <!--#_
    } else if(has_ski == true && has_resp == true) {
    var encodedVal = Srch.U.getTrimmedProcessedHHXMLString(Srch.U.getMultipleHHXMLNodeValues(hhProps, "skills", 3, delimiter), 125);
    if (Srch.U.e(encodedVal)) { encodedVal = $htmlEncode(Srch.U.getTrimmedString(Srch.U.getUnEncodedMultiValuedResults(ctx.CurrentItem.Skills, 3, delimiter), 125)) }
    if (!Srch.U.e(encodedVal)) {
    _#-->
    <span id="FieldTitle" class="ms-soften"> _#= $htmlEncode(Srch.Res.item_People_Skills) =#_ </span>
    _#= encodedVal =#_
    <!--#_
    _#-->
    <!--#_
    } else if(has_pp == true && (has_ski == true || has_resp == true)) {
    var encodedVal = Srch.U.getTrimmedProcessedHHXMLString(Srch.U.getMultipleHHXMLNodeValues(hhProps, "pastprojects", 3, delimiter), 125);
    if (Srch.U.e(encodedVal)) { encodedVal = $htmlEncode(Srch.U.getTrimmedString(Srch.U.getUnEncodedMultiValuedResults(ctx.CurrentItem.PastProjects, 3, delimiter), 125)) }
    if (!Srch.U.e(encodedVal)) {
    _#-->
    <span id="FieldTitle" class="ms-soften"> _#= $htmlEncode(Srch.Res.item_People_PastProjects) =#_ </span>
    _#= encodedVal =#_
    <!--#_
    _#-->
    <!--#_
    } else if(has_int == true && (has_pp == true || has_ski == true || has_resp == true)) {
    var encodedVal = Srch.U.getTrimmedProcessedHHXMLString(Srch.U.getMultipleHHXMLNodeValues(hhProps, "interests", 3, delimiter), 125);
    if (Srch.U.e(encodedVal)) { encodedVal = $htmlEncode(Srch.U.getTrimmedString(Srch.U.getUnEncodedMultiValuedResults(ctx.CurrentItem.Interests, 3, delimiter), 125)) }
    if (!Srch.U.e(encodedVal)) {
    _#-->
    <span id="FieldTitle" class="ms-soften"> _#= $htmlEncode(Srch.Res.item_People_Interests) =#_ </span>
    _#= encodedVal =#_
    <!--#_
    _#-->
    <!--#_
    _#-->
    </div>
    <!--#_
    _#-->
    <!--#_
    if(isSelfSrch == true) {
    _#-->
    <hr class="ms-srch-people-item-separator" />
    <div id="SelfSearchInfo">
    <div id="Heading">
    <a id="EditProfileLink" href="_#= $urlHtmlEncode(ctx.CurrentItem.EditProfileUrl) =#_"> _#= $htmlEncode(Srch.Res.item_People_EditProfileLink) =#_ </a>
    </div>
    <div id="Frequency">
    <span id="FieldTitle" class="ms-soften"> _#= $htmlEncode(Srch.Res.item_People_SelfSearchFrequency) =#_ </span>
    <ul id="FrequencyCard">
    <li id="MonthlyViews">
    <!--#_
    var encodedVal = (ctx.CurrentItem.ProfileViewsLastMonth == 1) ? $htmlEncode(String.format(Srch.Res.item_People_SelfSearchFrequency_ViewsMonths_Singular, ctx.CurrentItem.ProfileViewsLastMonth)) :
    $htmlEncode(String.format(Srch.Res.item_People_SelfSearchFrequency_ViewsMonths_Plural, ctx.CurrentItem.ProfileViewsLastMonth));
    _#-->
    _#= encodedVal =#_
    </li>
    <li id="DailyViews">
    <!--#_
    var encodedVal = (ctx.CurrentItem.ProfileViewsLastWeek == 1) ? $htmlEncode(String.format(Srch.Res.item_People_SelfSearchFrequency_ViewsWeeks_Singular, ctx.CurrentItem.ProfileViewsLastWeek)) :
    $htmlEncode(String.format(Srch.Res.item_People_SelfSearchFrequency_ViewsWeeks_Plural, ctx.CurrentItem.ProfileViewsLastWeek));
    _#-->
    _#= encodedVal =#_
    </li>
    </ul>
    </div>
    <!--#_
    if(has_query == true) {
    _#-->
    <div id="Keywords">
    <span id="FieldTitle" class="ms-soften"> _#= $htmlEncode(Srch.Res.item_People_SelfSearchKeywords) =#_ </span>
    <!--#_
    var encodedVal = $htmlEncode(Srch.U.getTrimmedString(Srch.U.getUnEncodedMultiValuedResults(ctx.CurrentItem.ProfileQueriesFoundYou, 5, delimiter), 84));
    if (!Srch.U.e(encodedVal)) {
    _#-->
    _#= encodedVal =#_
    <!--#_
    _#-->
    </div>
    <!--#_
    _#-->
    <!--#_
    if(!Srch.U.n(ctx.CurrentItem.LastModifiedTime))
    var lastModifiedTime = ctx.CurrentItem.LastModifiedTime;
    var encodedLastModifiedTimeId = $htmlEncode(id + "_lastModifiedTime");
    AddPostRenderCallback(ctx, function()
    Srch.U.renderFriendlyTimeIntervalString(lastModifiedTime, encodedLastModifiedTimeId);
    _#-->
    <div id="LastModifiedTime">
    <span class="ms-textSmall">_#= $htmlEncode(Srch.Res.item_People_LastModified) =#_</span>
    <span id="_#= encodedLastModifiedTimeId =#_" class="ms-textSmall ms-srch-ellipsis"></span>
    </div>
    <!--#_
    _#-->
    </div>
    <!--#_
    _#-->
    </div>
    </div>
    </div>
    <!--#_
    AddPostRenderCallback(ctx, function(){
    EnsureScriptFunc("clienttemplates.js", "RenderUserFieldWorker", function() {
    var getUserPersona = function() {
    var renderCtx = new ContextInfo();
    renderCtx.Templates = {};
    renderCtx.Templates["Fields"] = {};
    var fieldSchemaData = { "PictureOnly":"1", "PictureSize": "Size_72px"};
    var listSchema = {"EffectivePresenceEnabled": "1", "PresenceAlt": Srch.Res.item_People_NoPresenceAvailable};
    var userData = {"title": uName, "email": uEmail, "picture": uPicUrl, "sip": uSip};
    var personaControlElement = document.getElementById(userPersonaId);
    if (!Srch.U.n(personaControlElement))
    personaControlElement.innerHTML = RenderUserFieldWorker(renderCtx, fieldSchemaData, userData, listSchema);
    if(typeof(ctx.EnqueueImnRequest) == "undefined") { ctx.EnqueueImnRequest = false; }
    if (ctx.EnqueueImnRequest == false) {
    ctx.ClientControl.add_oneTimeResultRendered(function(){ if (typeof(ProcessImn) != "undefined") { ProcessImn(); } });
    ctx.EnqueueImnRequest = true;
    getUserPersona();
    _#-->
    <!--#_
    _#-->
    </div>
    </body>
    </html>

    Hi,
    According to your post, my understanding is that you have an issue about adding fields in people search results page.
    Per my knowledge, there is no issue in your steps, and the issue may be related to the search crawl in SharePoint online.
    For SharePoint server on-premise, we can start the search full crawl, however, for SharePoint online, we could not start the search full crawl manually.
    You can wait for some time to complete the search full crawl in SharePoint online, then check whether it works.
    As this is the forum for SharePoint server on-premise, I’m not familiar with the SharePoint online search crawl, for this issue, I recommend you can post a new question in the forum for Office 365/SharePoint online.
    http://community.office365.com/en-us/forums/154.aspx
    More experts will assist you, then you will get more information relation to SharePoint Online.
    Thank you for your understanding and support.
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • Data fails results page display with msdb

    I am using Dreamweaver 8 with ASP VB Script. IIS and localhost.
    I have a search page, a database and a results page.
    I have set up a search page with this code:
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Key Word Search</title>
    <style type="text/css">
    <!--
    body {
                background-color: #000000;
    .style1 {
                color: #FFFFFF;
                font-family: Arial, Helvetica, sans-serif;
                font-weight: bold;                                                                             
    -->
    </style>
    <script type="text/JavaScript">
    <!--
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_validateForm() { //v4.0
      var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
      for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=MM_findObj(args[i]);
        if (val) { nm=val.name; if ((val=val.value)!="") {
          if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
            if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n';
          } else if (test!='R') { num = parseFloat(val);
            if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';
            if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
              min=test.substring(8,p); max=test.substring(p+1);
              if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
        } } } else if (test.charAt(0) == 'R') errors += '- '+nm+' is required.\n'; }
      } if (errors) alert('The following error(s) occurred:\n'+errors);
      document.MM_returnValue = (errors == '');
    //-->
    </script>
    </head>
    <body>
    <form action="data_base_results.asp" method="get" name="search" target="_blank" id="search">
      <div align="center">
        <p class="style1">Key Word Search:</p>
        <p class="style1">
          <label>
          <input name="keyword" type="text" id="keyword" value="<%= Request.QueryString("search") %>" size="30" maxlength="30" />
          </label>
          <input name="Submit" type="submit" onclick="MM_validateForm('keyword','','R');return document.MM_returnValue" value="Submit" />
          <input name="Reset" type="reset" id="Reset" value="Reset" />
        </p>
      </div>
    </form>
    </body>
    </html>
    The data base is set up and tested OK with the following:
    "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\inetpub\wwwroot\sciweb_root\sciencelinkcafe11kj.mdb"
    The results page is set up and tested OK using the following code:
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
    <!--#include file="Connections/connSciWeb.asp" -->
    <%
    Dim rsSearch__MMColParam
    rsSearch__MMColParam = "1"
    If (Request.QueryString("search") <> "") Then
      rsSearch__MMColParam = Request.QueryString("search")
    End If
    %>
    <%
    Dim rsSearch
    Dim rsSearch_numRows
    Set rsSearch = Server.CreateObject("ADODB.Recordset")
    rsSearch.ActiveConnection = MM_connSciWeb_STRING
    rsSearch.Source = "SELECT KeyWords, Link, Year FROM Table1 WHERE KeyWords LIKE '%" + Replace(rsSearch__MMColParam, "'", "''") + "%' ORDER BY Year ASC"
    rsSearch.CursorType = 0
    rsSearch.CursorLocation = 2
    rsSearch.LockType = 1
    rsSearch.Open()
    rsSearch_numRows = 0
    %>
    <%
    Dim Repeat1__numRows
    Dim Repeat1__index
    Repeat1__numRows = 10
    Repeat1__index = 0
    rsSearch_numRows = rsSearch_numRows + Repeat1__numRows
    %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Search Results</title>
    <style type="text/css">
    <!--
    body {
                background-color: #000000;
    .style2 {
                font-family: Arial, Helvetica, sans-serif;
                font-weight: bold;
                font-size: 14px;
    .style3 {
                font-family: Arial, Helvetica, sans-serif;
                font-weight: bold;
                color: #FFFFFF;
    body,td,th {
                font-family: Arial, Helvetica, sans-serif;
                font-size: 14px;
                font-weight: bold;
    a:link {
                color: #000000;
                text-decoration: none;
    a:visited {
                color: #000000;
                text-decoration: none;
    a:hover {
                text-decoration: underline;
                color: #000000;
    a:active {
                text-decoration: none;
    #Layer1 {
                position:static;
                width:775px;
                height:25px;
                z-index:1;
                left: 541px;
                top: 270px;
                background-color: #00FFFF;
                color: #000000;
                padding-top: 10px;
    .style5 {font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 14px; color: #000000; }
    .style7 {color: #000000}
    -->
    </style></head>
    <body>
    <div align="center">
      <p class="style3"> </p>
      <p class="style3">HERE ARE THE RESULTS OF YOUR KEYWORD/S SEARCH: </p>
      <p class="style3"> </p>
      <table border="2" cellpadding="2" cellspacing="5">
        <tr bgcolor="#999999">
          <td width="164" height="40" bordercolor="#FF0000"><div align="center" class="style2">Keyword/s</div></td>
          <td width="164" bordercolor="#FF0000"><div align="center">Year</div></td>
        </tr>
        <% While ((Repeat1__numRows <> 0) AND (NOT rsSearch.EOF)) %>
        <tr>
          <td height="22" bordercolor="#FF0000" bgcolor="#00FFFF"><div align="center" class="style2"><%= LCase((rsSearch.Fields.Item("KeyWords").Value)) %></div></td>
          <td bordercolor="#FF0000" bgcolor="#00FFFF"><div align="center"><%=(rsSearch.Fields.Item("Year").Value)%></div></td>
        </tr>
        <%
      Repeat1__index=Repeat1__index+1
      Repeat1__numRows=Repeat1__numRows-1
      rsSearch.MoveNext()
    Wend
    %>
      </table>
      <p> </p>
      <table width="853" border="2" cellpadding="2" cellspacing="5">
        <tr bordercolor="#FF0000" bgcolor="#999999">
          <td width="164" height="40"><div align="center" class="style7"><a href="data_base_search.asp" class="style2">Search again </a></div></td>
          <td width="110"> </td>
          <td width="115"> </td>
          <td width="200"> </td>
          <td width="200" height="40"><div align="center" class="style7"><a href="index.html"><span class="style2">Return home </span></a></div></td>
        </tr>
      </table>
    </div>
    </body>
    </html>
    <%
    rsSearch.Close()
    Set rsSearch = Nothing
    %>
    When the results page is tested the following comes up:
    Can anyone help me? Help very gratefully received. Kev

    >Yes, I can get a simple ASP page to render
    So something that outputs text like
    response.write "test"
    works fine?
    >Should I reinstall IIS7 then?
    I would reinstall - the missing exe file is troubling and you need to be able to enable detailed error messages if you have any hope in developing applications. You might be able to configure that via IIS control panel rather than the command line - you'd need to check the IIS forums for more details.
    >Is the version of windows and edition OK?
    The Windows version you have should be fine. I believe that Windows 7 Home Basic only supports limited IIS7 functionality - no ASP or .NET. But I believe Premium supports it fully.

  • Exporting report to Word, Word editable or RTF adds page breaks

    Our workforce management software (Aspect Workforce Management) uses Crystal 2008 for customer reports.  Previewing, printing, and exporting to HTML, PDF, and Excel all work fine but exporting the report to Word, Word Editable, and RTF results in a document that contains extra page breaks in the middle of pages or other strange paging behavior.
    With the regular Word export and the RTF export we see some pages containing the first half of the page at the top of a page followed by a break then the second half of the page on the next page at the bottom of the page.  E.G., lots of empty whitespace at the bottom of a page followed by lots of empty whitespace at the top of the next page which ends with content that should have been at the bottom of the previous page.
    The Word Editable export doesn't seem to insert weird page breaks but every page says 1 of N as the page number in the footer.  Other export formats number the pages correctly.
    Our customers are demanding a fix for this problem, which seems to be a Crystal defect.  I don't understand why PDF and HTML and Excel all page correctly but not Word, Word Editable, or RTF.  How hard is it to generate the export without causing extra page breaks or incorrectly numbered pages?
    Is this problem acknowledged by SAP to be defect in the word, word editable, and rtf export options?  Is SAP intending to fix this problem?
    John Hansen

    And good morning to you too John:
    So, if you wrote the code your self and it is in .NET, why was the issue posted to the SAP Crystal Reports Design forum rather than the .NET - SAP Crystal reports forum? Note that each forum as a nice description in the header as to what sort of questions should be posted in that forum. In light of you posting the issue to the SAP Crystal Reports Design forum, I feel it was a pretty fair to ask the questions I did ask... (?).
    I feel that the way this communication is going, it may be a good idea if you do a bit of searching on these forums. Also, use the search box at the top right corner of this page (it will give you results for KBases, blogs, wikis, articles and more...)
    If you do not get what you need from that, it will be best for you to create a phone case here:
    http://store.businessobjects.com/store/bobjamer/en_US/pd/productID.98078100?resid=S6I@hgoHAkEAAGsiyVkAAAAR&rests=1282226845369
    Note that if what you report is deemed to be a bug in the CR designer or the CR SDK, your phone case will be refunded.
    Regards
    - Ludek

  • Certificate error pops up from Google search results page

    Hi,
    I wanted to find out more info about a certain company, so I typed the name on Google. When I clicked on Search (not I'm feeling lucky!) the search results appeared, but I immediately got a pop-up saying the certificate for the website of the company in question was not valid:
    "Secure Connection Failed
    www.mvfaccount.com:443 uses an invalid security certificate.
    The certificate is not trusted because the issuer certificate is unknown.
    (Error code: sec_error_unknown_issuer)
    This could be a problem with the server's configuration or it could be someone trying to impersonate the server.
    If you have connected to this server successfully in the past the error may be temporary and you can try again later."
    But the thing is: I hadn't even clicked on that search result! The warning appeared while the search results page was loading.
    I find that unsettling because it makes me wonder: does Firefox visit the websites before I visit them?
    And before you ask: no, I'm not a customer of that company (Maple Valley Financial) nor did I ever visit them before.
    Thanks,
    Sergio
    == URL of affected sites ==
    http://www.google.ca/search?source=ig&hl=en&rlz=1G1ACAW_ENCA389&=&q=maple+valley+financial&aq=f&aqi=g1&aql=&oq=&gs_rfai

    I'm not sure how this could be a Firefox setting, but I would try the "usual" first:
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    "3-bar" menu button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?
    In case one of your extensions is involved, could you test the page in Firefox's Safe Mode? That's a standard diagnostic tool to deactivate extensions and some advanced features of Firefox. More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using either:
    * "3-bar" menu button > "?" button > Restart with Add-ons Disabled
    * Help menu > Restart with Add-ons Disabled
    Not all add-ons are disabled: Flash and other plugins still run
    After Firefox shuts down, a small dialog should appear. Click "Start in Safe Mode" (''not'' Reset).
    Any difference? If that helps, it could be that you selected to block that element in one of your add-ons.

  • Bug in SQL Workshop, SQL Scripts, Results page [Apex 4.0.1.00.03]

    I have some scripts that I have created to insert various rows into a table called level5. Most rows execute properly and the output shows "1 row inserted" as I would expect.
    But then some others give bizarre output on the Results page. Here are a few examples (first 2 are what I would term "correct", the rest are "odd"):
    1 0.27 insert into level5 (name, description, active, approver_id, 1 row(s) inserted. 1
    2 0.02 insert into level5 (name, description, active, approver_id, 1 row(s) inserted. 1
    33 0.02 insert into level5 (name, description, active, approver_id, Statement processed. 1
    58 0.02 insert into level5 (name, description, active, approver_id, Statement processed. 1
    65 0.03 insert into level5 (name, description, active, approver_id, User created. 1
    633 0.05 insert into level5 (name, description, active, approver_id, Role created. 1
    924 0.02 insert into level5 (name, description, active, approver_id, Role created. 1
    The SQL across these various rows is identical except for some values in varchars.
    Here are the corresponding sql commands:
    1
    insert into level5 (name, description, active, approver_id, level4_id) values ('M_SECROLE', 'Security', '1', (select id from persons where pernr='376' and active='1'), (select id from level4 where name='SD1' and level3_id=(select id from level3 where name='xyz' and level2_id=(select id from level2 where name='clienta' and level1_id=(select id from level1 where name='Application')))));
    2
    insert into level5 (name, description, active, approver_id, level4_id) values ('M_ADMIN', 'ADMIN', '1', (select id from persons where pernr='376' and active='1'), (select id from level4 where name='SD1' and level3_id=(select id from level3 where name='xyz' and level2_id=(select id from level2 where name='clienta' and level1_id=(select id from level1 where name='Application')))));
    33
    insert into level5 (name, description, active, approver_id, level4_id) values ('COLL_CREAT_RM', 'Collaboration Create Room', '1', (select id from persons where pernr='327' and active='1'), (select id from level4 where name='SD1' and level3_id=(select id from level3 where name='xyz' and level2_id=(select id from level2 where name='clienta' and level1_id=(select id from level1 where name='Application')))));
    58
    insert into level5 (name, description, active, approver_id, level4_id) values ('360_FEEDBACK', '360 Feedback', '1', (select id from persons where pernr='327' and active='1'), (select id from level4 where name='SD1' and level3_id=(select id from level3 where name='xyz' and level2_id=(select id from level2 where name='clienta' and level1_id=(select id from level1 where name='Application')))));
    65
    insert into level5 (name, description, active, approver_id, level4_id) values ('AUTO_USER_ADM', 'Automated User Admin', '1', (select id from persons where pernr='702' and active='1'), (select id from level4 where name='DD1' and level3_id=(select id from level3 where name='xyz' and level2_id=(select id from level2 where name='clienta' and level1_id=(select id from level1 where name='Application')))));
    633
    insert into level5 (name, description, active, approver_id, level4_id) values ('PROD_SUPPORT_CRE_INV', 'IT SRM Prod Support Role Create Invoices', '1', (select id from persons where pernr='990' and active='1'), (select id from level4 where name='PC1' and level3_id=(select id from level3 where name='xyz' and level2_id=(select id from level2 where name='clienta' and level1_id=(select id from level1 where name='Application')))));
    924
    insert into level5 (name, description, active, approver_id, level4_id) values ('PROD_SUPPORT_CRE_INV', 'IT SRM Prod Support Role Create Invoices', '1', (select id from persons where pernr='327' and active='1'), (select id from level4 where name='QC1' and level3_id=(select id from level3 where name='xyz' and level2_id=(select id from level2 where name='clienta' and level1_id=(select id from level1 where name='Application')))));
    Basically it looks to me like the results text is somehow being affected by the text in my description colum in my SQL. This seems wrong to me, and a bug. Why don't they all just show the same "1 row inserted" text? Why do some say "statement processed"? And why the User and Role created -- that is just plain wrong!
    Would you agree this is a bug??
    This is on Application Express 4.0.1.00.03 in case that matters!

    Hi,
    Browser: Firefox 3.6.13 and IE 8.0
    Template: One Level Tabs - Right Sidebar (optional / table-based)
    Theme: 2. Builder Blue
    Here is an application I created on http://apex.oracle.com.
    http://apex.oracle.com/pls/apex/f?p=29067:1
    Workspace: abc
    User ID: [email protected]
    Password: ssddaa05
    Please look at this application and help me to get the SAL column in RED font when SAL>2000.
    Thanks
    Chandra.
    Edited by: Chandra on Jan 11, 2011 12:38 PM

  • Show Quick Launch (Side Navigation) in Search Results page

    Hi,
    I created a custom search results page in a site (under Pages library). In this page the Quick Launck (side navigation) is hidden. Any solution to display it?
    keren tsur

    You can try this:
    1. Edit page
    2. Create a custom text file and insert the following CSS, which will make the Quick Launch menu visible:
    <style type="text/css">
    #s4-leftpanel {
      display:inherit!important;
      width:155px!important;
    .s4-ca {
      margin-left:155px!important;
    </style>
    Save the file, naming it showQuickLaunch.txt. Store the text file in the Style Library or on the server.
    3. Insert a Content Editor Web Part on the page in which you want to hide the Quick Launch menu. Edit the Web Part, entering the link to the showQuickLaunch.txt file.
    http://sharepointpromag.com/sharepoint/four-ways-add-or-remove-quick-launch-menu-control
    -prs

  • How to transfer excell info to iweb page?

    how to transfer excell info to iweb page?

    hello again.
    i pasted the html link in the iframe, in iewb it shows up, but not in the website
    http://www.tuning.ru/Blokpedaligaza!.html
    what can be wrong?
    P.S. i have only html page uploaded to server the was no any folder for html document..
    Message was edited by: platinummf

  • Custom Google Results Page

    Hi,
    I would like to integrate a search form and results page into
    my site. I saw
    this one:
    http://www.lapmaster.com/
    and liked how it took a google search and placed the results
    on the site but
    without any Google branding. Can anyone show me how to do
    this?
    Thanks

    1. does anybody has any experience to share about Google's
    Public
    Service Search (for non-profit organizations)?
    2. is it possible to combine Google's search results from
    static pages
    in a site with a DB search in a unique result page?
    the static pages contains cv, descriptions, ... that i have
    stored in a
    folder and insert with a SSI. i use this approach because is
    easier to
    format & modify texts with DW. now i'm thinking to put
    them in the DB
    and do the whole search myself. the drawback is i'll need to
    include
    format buttons in a form to add/modify info, like those in
    forums using
    vBulletin
    any advice?
    PHP, MySQL
    tia,
    jdoe
    > mlapointe wrote:
    >
    >> The instructions are on Google's website, in the
    business section.
    >>
    http://www.google.com/services/index.html
    Depending on the level of
    >> customization and "Google-free" branding you want,
    you may have to pay
    >> for it.

  • Can't select text on a safari search results page

    Hi, I'm using an Ipad 3 I have safari sset to use the google search in settings
    but when I search for something and it shows the results page I can only select links holding my finger on the text below the link does nothing.
    sometimes the answer i'm looking for is in the text and I can just copy it instead of having to click the link to see it.

    I found out that you gotta do a double tap and hold the only problem is its cumbersome and it only works if safari is set to search google or yahoo if it's set to use bing it does not work at all..
    I've added the code below which will unlock the text select feature when selecting text on a search results page
    I  wrote this java script which allows you to just press and hold on the text to select it.. gets rid of having to double tap and hold and acts like select does on all the other apps. It will also work if your search engine is set to bing.
    to use you will need 2 book marks 1 book mark is for google & yahoo the other is for bing
    add any book mark then go into it and edit it, in the title type "Unlock Text Selection"
    just below the title paste this javascript in
    javascript:void(s = 'hdurj123');  s = '(' + s + ')';  x = new RegExp(s,  'gi');  rn = Math.floor(Math.random() * 100);  rid = 'z' + rn;  b =  document.body.innerHTML;  b = b.replace(x, '<span name=' + rid + ' id=' + rid  + ' style=\'color:#000;background-color:white; font-weight:bold;\'>hdurj123</span>'); void(document.body.innerHTML =  b);
    then save it under the book marks bar
    create a second bookmark and edit it
    in the title type "Unlock Selection Bing" and below that past this java script in
    javascript:void(s = 'results');  s = '(' + s + ')';  x = new RegExp(s, 'gi');  rn = Math.floor(Math.random() * 100);  rid = 'z' + rn; b = document.body.innerHTML;  b = b.replace(x, '<span name=' + rid + ' id=' + rid + ' style=\'background-color:white; font-weight:bold;\'>results</span>'); void(document.body.innerHTML = b);
    if your search engine is set to yahoo or google:
    fire up safari and do a search for something
    when the search results show click on the bookmark "Unlock Text Selection"
    now you will be able to just press and hold on the text to select it and if you move it around you can select individual words.
    if your search engine is set to bing
    fire up safari and do a search for something
    when the search results show, click on the bookmark "Unlock Selection Bing"
    now you will be able to select text with just a press and hold and even individual words
    this only works for search results pages I tried it on a page after I clicked the link and it caused safari to display the page source instead of the page.. I just use it for searches
    here's an example of setting up the bookmark:
    here's what it looks like on a bing search if your search engine is set to bing, in settings:
    you can see that I was able to select the individual words, *** if your in portrait you may have to zoom in a bit *** landscape works without having to zoom at all

Maybe you are looking for