HTML DB HTML (Anchor Tag)

Hello everyone,
I have a target of icon which enables me to open a Web page located in a repertory of my network.
I would like to be able according to the place that I am in my application, to reach a place in page HTML (ANCHOR tag).
I put in page HTML of the anchors such as <A NAME="Zoom">
I tested in the target of icon: J:\PROJ\T-bord\LIV_01\relnotes0.3.2.html<a ref="#Zoom"> "target=_blank".
The page opens, but it is not placed at Zoom inking. Can you say to me if there is another way of being able to regulate my problem?
Thank you very much! Bye.

Hello Vikas,
I will try to reformulate my question with less ambiguity.
I have in the heading of each page of my application an image with a bond to open a file .PDF.
The file contains many information and I would like that by opening this file outward journey at a precise place in the file.
I did not see how proceeding to do that with a file PDF.
I then thought of modifying file PDF in format HTML.
With this format, I can place at various places, anchors(ex : A NAME="Zoom"), in order to use them in my application HTML dB.
At the time when I open file HTML, I want to place myself at the place that I want in the file without being obliged to traverse all the file to go to seek my information.
In the properties of the image in HTML dB, I placed in the section of the target of icon the address of the file and also the name of the anchor to be located at a precise place of my file: J:\PROJ\T-bord\LIV_01\relnotes0.3.2.html a ref="#Zoom" "target=_blank"
My file opens but at the beginning of the file. It is not occupied of the anchor to locate me at the desired place.
I seek how to make?
Thank you.
Message was edited by:
timiche
Message was edited by:
timiche
Message was edited by:
timiche

Similar Messages

  • Method call in html anchor tag

    I have read about how to place a hyperlink in JTable cell in other threads. i have a method called Details() which has a mouse pressed event which responds on left click on the first column cells of my JTable. then i get the column and row positions and open up a JDialog.
    so Now i have to show the first column cells as hyperlinks(underlined and handcursor on visit).
    i have done something like this,
    setText( "<html><a href=\"\">" + (String)(value==null?"":value ) +"</a></html>"); this makes the cell values blue colored as well as underlined as soon as the table is loaded.
    how can i make it behave like a hyperlink ? that is colored, underlined and handcursor only when mouse is placed on it.
    Can i have the call to Details() method inside the anchor tag which i have shown above?
    Thanks,

    Well what do you know, I was doing everything correctly.
    Firefox does not allow local file links from a web page.
    http://kb.mozillazine.org/Firefox_:_Issues_:_Links_to_Local_Pages_Don%27t_Work

  • Parse THIS!!!  XML can't contain HTML (anchor tags)????

    Is there a way to parse XML that has HTML tags and special characters within it?
    <br><br>
    I've been searching for days for a solution with no joy.
    <br>
    The Oracle scripts I wrote below work fine as long as only alphanumeric characters are in the XML doc.
    <br><br>
    Here's what I'm doing...I'm page scraping several dynamic websites using ColdFusion. I remove all the unneeded HTML...and replace the remaining HTML with XML tags.
    <br><br>
    I then want to pass this XML (see below) variable (cfxml) to Oracle so it can be parsed and loaded into the database. If I remove the anchor tags and the CDATA tags...the code works fine....but I want the anchor tags loaded into my table.
    <br><br>
    Anyone have any suggestions....preferably a solution so I can stop pulling my damn hair out.
    <br><br>
    <br>
    Oracle Scripts<br>
    <br>
    create or replace procedure LoadXML (cfxml in varchar) AS
    <br>
    begin<br>
         insert into JOBS (xmldoc) values <br>(xmltype.createxml(cfxml));<br>
    end;
    <br><br>
    create or replace trigger job_bifert as<br>
    begin<br>
    if (:new.xmldoc is null) then<br>
    return;<br>
    end if;<br>
    select <br>
    xmltype.getstringval(:new.xmldoc.extract('/recordset/row/title/text()')),<br>
    xmltype.getstringval(:new.xmldoc.extract('/recordset/row/company/text()')),<br>
              xmltype.getstringval(:new.xmldoc.extract('/recordset/row/location/text()'))<br>
    into :new.title, :new.company, :new.location<br>
    from dual;<br>
    end;<br>
    <br>
    <br>
    Sample XML being sent to Oracle via ColdFusion
    <br>
    <br>
    <?xml version="1.0" encoding="iso-8859-1"?><br>
    <recordset><br>
    <row><br>
    <date><br>
    <![CDATA[
                Jul 27
              ]]><br>
    </date><br>
    <title><br>
    <![CDATA[
                < a href="http://jobsearch.monster.com:80/getjob.asp?JobID=32472300&AVSDM=2005%2D07%2D28+02%3A36%3A26&Logo=1&q=cold fusion&cy=US&sort=dt">ASP.NET Technical Program Manager with Marketing Savvy< /a>
              ]]><br>
    </title><br>
    <company><br>
    <![CDATA[
                Excell Data
              ]]><br>
    </company><br>
    <location><br>
    <![CDATA[
                < a onClick="popMMLL('WA','Redmond'); return false;" href="http://jobsearch.monster.com:80/896">WA-Redmond< /a>
              ]]><br>
    </location><br>
    </row><br>
    </recordset>

    Hi:
    You can parse HTML tags inside the Database using JTidy library.
    Load JTidy to the sys schema using loadjava with grant to public or into your own schema.
    The you can parse HTML tags in a CDATA section creating a Tidy parser. Look at this code as example, its part of DBPrism CMS XForms actions and it process an HTMLArea HTTP Post action. See the method updateContent(CLOB post_xml):
    http://cvs.sourceforge.net/viewcvs.py/dbprism/cms-2.1/src/com/prism/cms/frontend/PageActions.java?rev=1.5&view=auto
    The CLOB arguments is an XML XForm instance document, the content node has the HTML tags to be parsed wrapped by CDATA tags:
    So the String content are the HTML tags.
    Once the document is parsed by JTidy it is converted to a valid XML and it will be accepted by the XMLType instance.
    Best regards, Marcelo.

  • Html text anchor tag uses the whole line

    Here's one. When I pull in html formatted text into a text
    field and set the paragraph to align right, the whole line is set
    as a link.
    Is there anyway to make it so the link is not made for the
    whole line?
    Example:
    <p align="right"><a href="link">Link
    Text</a></p>
    Any help would be appreciated.
    Wally

    TIm,
    Thanks for doing that. I came up with the same results. Since
    I'm loading everything from external files, I wanted to shy away
    from escaping all those characters. But, you definately helped me
    come up with a solution.
    I took some of my text links and dropped them all into a test
    movie I had been working with and had accidently left the
    <title> tag in the head, which shows up in the html. Needless
    to say, the text "untitled document" did NOT have the hyperlink
    applied to it.
    So I got to thinking, "What if I put text before and after
    the anchor tag." And sure enough. NO HYPER LINK on the new text. So
    then I got to thinking, "Hmm. Maybe I'll just put a character in
    before and after the hyperlink and set it's color to white so it
    won't show up."
    Sure enough it worked. So, that's my fix/workaround. If you
    have a hyperlink that is aligned right and it shows up on the whole
    line, put a character before and after the hyperlink and make it's
    color the same as the background.
    It worked, but
    HELLO ADOBE / FLASH TEAM!!! Please fix the bug and implement
    HTML 4.0 or above so we don't have to come up with these crazy
    workarounds,
    please.
    Thanks everybody who helped out on this. Great community!
    Wally

  • Download attribute for anchor tag in HTML 5 mozilla browser

    There seem to no download attribute for anchor tag been implemented in Mozilla Firefox ... neither desktop nor mobile version for android.
    can seem to download a file generated via javascript with correct name .....it saves with garbage name and with .part extension.
    Will it be implemeted in the future ....

    ''thak123 wrote:''
    Will it be implemeted in the future ....
    See the following link for details.
    * [https://bugzilla.mozilla.org/show_bug.cgi?id=676619 Bug 676619] - Implement proposed download attribute
    If you want a particular feature or fix to be implemented, vote for it instead of commenting on the bug report. See [https://bugzilla.mozilla.org/page.cgi?id=etiquette.html Bugzilla etiquette].

  • Anchor tags (aka "bookmarks") break in RH 7 HTML

    We use several anchor tags, aka bookmarks, to sections of our
    Robohelp pages.
    These URLs look like this:
    http://www.exampledomain.com/Help/index.htm#Frequently_Asked_Questions.htm#Question_two
    These links worked great in Robohelp 5: Question two of the
    FAQ page loaded at the top, inside the robohelp shell.
    Now in Robohelp 7, these anchor tags no longer work inside of
    the shell - the page loads at the top of the FAQ page and the
    #Qustion_two anchor is disregarded.
    I know that the anchor tag is there and working because when
    I load the page without the robohelp shell at this URL:
    http://www.exampledomain.com/Help/Frequently_Asked_Questions.htm#Question_two
    Question two loads at the top of the page.
    Why did this stop working?!!? How do I fix it without
    changing all my URLs? This "feature" is ruining my day. Bad enough
    that you rename anchor tags to bookmarks, now they don't even work.

    Hi Colum,
    Thank you for the welcome and the response.
    All I'm trying to find out is the URL to load the
    Frequently_Asked_Questions.htm page directly at the #Question_two
    anchor inside of the index.htm FlashHelp shell.
    In Robohelp x5, this used to be
    index.htm#Frequently_Asked_Questions.htm#Question_two
    With Robohelp 7, this url stopped working.
    I can load the FAQ page inside of the shell with
    index.htm#Frequently_Asked_Questions.htm
    I can load the FAQ page to the Question_two ancor without the
    index.htm shell with
    Frequently_Asked_Questions.htm#Question_two
    But I can't figure out any link that loads the Question_two
    anchor at the top of the FAQ page inside of the index.htm shell. In
    Robohelp 7, index.htm#Frequently_Asked_Questions.htm#Question_two
    just loads the FAQ page at the top.
    Thanks for your help,
    RoboHurt

  • How to embed jnlp file into html page using object tag

    hi everyone,
    i have written one jnlp file like this.
    <?xml version="1.0" encoding="utf-8" ?>
    <!-- JNLP file for Demo applicaion -->
    <jnlp spec="1.0+" codebase="http://localhost:9080/base/" href="SampleExample.jnlp">
         <information>
              <title>Demo Application</title>
              <vendor> </vendor>
              <description>Sample Demo Application</description>
              <offline-allowed/>
         </information>
         <security/>
         <resources>
              <j2se version="1.3+" />
              <jar href="common.jar" main="true" download="eager" />
              <jar href="classes12.jar" download="eager" />
              <jar href="toplink.jar" download="eager"/>
              <package name="com.applet.*" part="applet" recursive="true"/>
         </resources>
         <applet-desc name="grid" main-class="com.applet.PriceGrid" width="1000" height="300"/>
    </jnlp>
    i am trying embed that jnlp file using object tag like
    <OBJECT
    classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" WIDTH="1000" HEIGHT="300" NAME="grid">     
    <PARAM NAME="jnlp" VALUE="http://localhost:9080/base/SampleExample.jnlp">
    </OBJECT>
    but i am not able to load the applet using Web Start.
    Can anyone please help me. This is very Urgent for me.
    Thanks & Regards,
    Shiva.

    thanks.
    i am giving my problem clearly. i have one applet. Previously i am loading the applet in my html page using object tag like this...
    <OBJECT
    classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" WIDTH="1000" HEIGHT="300" NAME="grid">
    <PARAM NAME="CODE" VALUE="com.adp.base.applet.PriceGrid.class" >
         <PARAM NAME="ARCHIVE" VALUE="common.jar,classes12.jar,toplink.jar" >
         <PARAM NAME="NAME" VALUE="grid" >
    <PARAM NAME="type" VALUE="application/x-java-applet">
    <PARAM NAME= "cache_option" VALUE ="no">
    </OBJECT>
    now what i need to do is
    i need load the applet only first time using web start and when ever the applet code changes in the server i need to reload the applet.
    for that i kept all the applet resources in .jnlp file.i want to cache all the resources which are in .jnlp file and applet must be displayed within a web page within a browser.
    Webstart always open a new application windows.
    I need to run an Applet embedded within a web page within a browser.
    Is there a way to still use Webstart?

  • HTML content layout substitution tags

    Hi,
    We have a multi-language Portal 10.1.4 and use HTML content layout substitution tags in a HTML Template. The problem is that we would like to use the ITEM.PUBLISHDATE.LABEL and the ITEM.UPDATESDATE.LABEL tags but the text rendered isn't exactly what we would like to get (f.e. in English it's 'Publish Date' and in French it's 'Date de mise à jour').
    I looked in the documentation and found that the text rendered correspond to the display name of the attribut (not 100% sure of this). But, those attributs are in the Shared Objects and we can't modify them.
    1. We would like to modify the display name of those attributs (both in French and in English) or find any other way to make it.
    2. We also want to apply an other format to the date retreived with the ITEM.PUBLISHDATE.VALUE and the ITEM.UPDATEDDATE.VALUE tags.
    Can someone help us with those issues ?
    David

    Yes, we added languages in the Translation tab of the shared object pagegroup properties.

  • When will firefox be able to support html files in embed tags again?

    A previous question was answered here that stated that firefox did not work with html files in embed tags. Is this a problem that is currently being worked on, or does Firefox just no longer support this?

    hello, a html file is no suitable content for an <embed>-tag. you'll have to use ''iframe ''or ''object ''for it instead...
    https://developer.mozilla.org/en-US/docs/Web/HTML/Element/embed

  • Every inlineframe generates HTML, head and body tag - how to remove it

    Hi,
    I am using inlineframe for adding HTML content. For every inlineframe, HTML, head and body tag is generated.
    How to get rid out of those HTML, head and body tags?
    please suggest
    Edited by: user10302920 on Feb 2, 2011 3:59 AM

    Hi,
    not sure the component is generating this. Must come from the HTML source you reference. If however it is the inline frame then this is not configurable
    Frank

  • Not able to open document using anchor tag in firefox

    Hello Friends,
    I would really need your help in solving this issue.My application is deployed in server machine.
    I'm accessing the application through fire fox. In my application, i have a link where i need to open a document on click of it.
    For this, i am using html anchor tag.
    Eg:
    Test
    where IP is the server machine address and dir is the shared directory.
    It works in IE but didn't work in fire fox. Please help me out on to fix it.
    Cheers,
    Cap

    Try out to open doc using following link, {color:#ff0000}*use 5 back slashes instead of 2*
    {color}Test Link
    once you done the code change, close the browser and open a new browser and try it.
    Edited by: Thagelapally on Jul 17, 2009 6:05 AM

  • CS5.5 Phonegap - Anchor Tags Don't Work

    So I made a test Android app using the phonegap template and it seemed to work okay. Now I'm trying to add anchor tags to link a table of contents from the top to text found lower on the page like this:
    <a href="#cq">Clinical Question</a>
    <a id="cq">Clinical Question:</a>
    But I get "ERROR LOADING PAGE" when testing in multi-view and web browser.
    External links work just fine though like:
    <a href ="http://www.adobe.com">Adobe</a><br>
    I'm assuming it has something to do with how the page/site is saved, does anyone have a solution?

    GP Animations wrote:
    So I made a test Android app using the phonegap template and it seemed to work okay. Now I'm trying to add anchor tags to link a table of contents from the top to text found lower on the page like this:
    <a href="#cq">Clinical Question</a>
    <a id="cq">Clinical Question:</a>
    But I get "ERROR LOADING PAGE" when testing in multi-view and web browser.
    That's correct. The jQuery Mobile framework uses IDs to load page blocks in multiple-page files. You cannot link to an ID within an individual page block. See this page in the jQuery Mobile documentation for a detailed explanation: http://jquerymobile.com/demos/1.0a4.1/#docs/pages/docs-pages.html. Confirmation that you can't do what you're trying to achieve is near the bottom of the page.

  • Apache Sling JCR Resource Resolver doesn't work for the anchor tags which is been rendered through j

    Certainly I realized that Apache Sling JCR Resource Resolver doesn't work for the anchor tags which is been rendered through jquery or javascript.
    e.g.
    In Felix Console , in Apache Sling JCR Resource Resolver configuration I have added following mapping.
    /content/myproject/-/
    So If any anchor tag is there like <a href="/content/myproject/en.html"> click me </a> then it will be mapped to "/en.html" automatically.
    But the problem is there in following scenario.
    I have an anchor tag as follows.
    <a href="#" id="test"> click here </a>
    And I am assigning the href to anchor through JQUERY.
    <script>
    $("#test").attr("href","/content/myproject/en.html");
    </script>
    Ideally this should have been mapped to "/en.html".
    But it is not mapping to "/en.html". It still shows "/content/myproject/en.html".
    How to resolve this.
    Thanks,
    Sai

    In a servlet you have access to the resourceResolver so if you know which attributes contain links then it's relatively easy to apply resourceResolver.map to those links.
    Your challenge is clearly how do you know which attributes are links and which aren't. Its is the same challenge that makes parsing the response and rewriting it on the way out difficult - the JSON doesn't have any semantic meaning so how do identify which attributes require rewriting. There really is no good answer ot that question in my experience - all the options have down sides.
    Create some convention - all attributes matching this pattern X get mapped before being converted to JSON (could be attributes whose name ends in link, or it could a convention applied to the value of the attribute - if the attribute is a string that starts with /content apply the resource resolver mapping. In this case you have train your developers to follow this convention which is the down side.
    Create some configurable list of attribute names that require mapping. This is brittle, requires training and is easy to break.
    Implement a client side version of the resource resolver mapping. It wouldn't be as full proof as server side mapping (because that takes into account but you could make it work for simple logic like stripping of /content/site/en. If ou are just trying to solve the simple version of this issue - stripping off the top of the repository path this might be your best option.
    Not worry about it and set up Apache 301 redirects that catch any long URLs and redirect them to short URLs (so configure apache to look for any URL matching /content/site/en and strip off /content/site/en and do a 301 redirect to the shortened URL. You end up with a lot of extra HTTP request because of all the 301s but it would work (I wouldn't recommend this option - but it is possible).

  • Hyperlink set to open new window & jump to anchor tag, doesn't jump

    I am generating Flash Help output in RH7.
    We have content hyperlinks that are set to open in a new window (target="_blank") and jump to an anchor tag in the destination topic (a href="newwindowtopic.htm#anchor")
    This works fine if I compile the file as is.
    However, we edit the whtopic.js topic in order to remove the "Show" link that appears when you open context sensitive topics. We do this by adding the following code at the end or the addShowButton function:
    setRelStartPage("ourstartpage.htm");
    show();
    Replacing the Show link worked fine in RH5 and it works fine in RH7. However, in RH7 when we replace the "show" link to have the TOC load when all topics are called (not just the start page), the ability to open a new window AND jump to the anchor tag is no longer working. When you click the hyperlink the new page opens, but only to the top of the page, not to the bookmark (anchor). The anchor jump does work if the hyperlink is set to open in the current window in RH7.
    The issue exists in IE7 and Firefox.
    Any ideas?

    Hi there
    Why are you editing the JavaScript file? Did you know that when generating FlashHelp you have an option to turn off the Show link?
    Additionally there are ways to link to topics so the TOC is visible and synchronized. These are described at this link right here.
    Cheers... Rick
    Begin learning RoboHelp HTML 7 within the day - $24.95!
    Click here for Adobe Authorized Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • Open linked files in new page? Anchor tags?

    I'm making a website for a friend's Pilates studio in iWeb 2008. She has her class schedules as PDF documents, which I've linked in, but there appears to be no way to choose for the PDF to open in a new window (unlike web page links, which come with a little box to check if you want to open them in a new window).
    Also, her husband has requested anchor tags on some of the pages.
    My questions: Is there a way to do this in iWeb 2008? Could I do it if I could access the code? Is there a way to access the code for a specific page?
    Any help would be greatly appreciated!
    Gwen

    Welcome to the Apple Discussions. Anchors are not supported in iWeb (send a feature request to Apple via http://www.apple.com/feedback/iweb.html).
    As far as having pdfs open in a new window you have to first upload the pdf file to the server and then use the hyperlink to a external page and enter the URL to the file on the server. I have a couple of examples on this demo page: LinkTestPage . The links are on the right side of the page and the URL used is listed (for a MMe account).
    OT

Maybe you are looking for

  • Select query in Advanced SQL Filter

    Hi All I am creating a shared filter and I need to write an sql statement for a column. Can I use string functions in the Advanced SQL Filter. My sql query is : select distinct "Exchange Rate"."Type" from "Credit" where substr(rtrim("Exchange Rate"."

  • Performance of minor startroutine

    Hi Guys I have the start routine (BW) shown below. I have problems executing it on our quality system with 2.000.000 records amount, but I dont know whether this problem is due to bad performing code or if it is due to a bad performing qulity system.

  • Getting List of all deployed applications thru WebService..

    Hello All, I want to get the list of all deployed applications and components thru webservice.. How can I achieve the above requirement... any suggestions?? Thanks & regards, Amol.

  • Context system menu (Webdynpro Abap)

    Hi Guru, Help me!!! How can I disable/hide the context menu in webdynpro Abap for system user parameter, when I run a web application? E.g. - Setting  - Quick help On/Off - More Field Help Thanks

  • Facing a problem to run the garnishment  for third party remittances

    Hi All, When we try create a posting run using Progrm RPURMP00  for garnishment  for third party remittances. We got an error messages as   PERNO. ...... no link to payroll results. Thanks, -suresh