Hyperlinks not working on Apex pages

<p>I've been having a problem with hyperlinks to files on my local PC hard drive, and have reduced the issue to this: I have constructed a simple form with an HTML region that contains nothing more than a simple hyperlink:</p>
<p><tt>&lt;a href="file:///c:\x.htm"&gt;Click&lt;/a&gt;</tt></p>
<p>When I click on the link, nothing happens. If I create a simple test.htm (with no Apex involvement) that contains just:</p>
<p><tt>&lt;html&gt;&lt;body&gt;<br>
&lt;a href="file:///c:\x.htm"&gt;Click&lt;/a&gt;<br>
&lt;/body&gt;&lt;/html&gt;</tt></p>
<p>it works fine.</p>
<p>I am using Oracle XE (10.2.0.1) with Apex 3.0.1 on Windows XP.</p>
<p>I've tried various combinations of forward and back slashes, and C| instead of C: but nothing works! Any suggestions on where I'm going wrong?</p>
Simon

Perhaps an Internet glitch; these links all work fine for me.

Similar Messages

  • Period overlaps code not working in apex page

    Hi there,
    Employees have a schedule with a begin and end date. Schedule periodes may not overlap each other for the same employee.
    I have a function returning error text validation as follow:
    declare
    l_dummy number;
    begin
    select  count(*)
    into    l_dummy
    from    fus_medewerker_roosters
    where   mdr_code = :p61_mdr_code
    and     id <> :p61_id
    and     to_date(:p61_begin_periode,'DD-MON-YY') <= eind_periode
    and     to_date(:p61_eind_periode,'DD-MOn-YY')>= begin_periode
    +;+
    if l_dummy > 0
    then
    return 'This employee already has a schedule in this periode.';
    else
    return null;
    end if;
    end;
    But the code is not working. It does save data for an employee even if the periodes overlaps.
    But the code works fine in workshop:
    declare
    l_dummy number;
    begin
    select  count(*)
    into    l_dummy
    from    fus_medewerker_roosters
    where   mdr_code = :p61_mdr_code
    and     id <> :p61_id
    and     to_date(:p61_begin_periode,'DD-MON-YY') <= eind_periode
    and     to_date(:p61_eind_periode,'DD-MOn-YY')>= begin_periode
    +;+
    if l_dummy > 0
    then
    DBMS_OUTPUT.PUT_LINE ('This employee already has a schedule in this periode.');end if;
    end;
    What is going wrong. Why is it working fine in workshop but not in my page?
    Regards,
    Diana
    Edited by: dianap on Sep 4, 2009 8:31 AM

    Hi Andy,
    I left out the id is not :p11_id
    and the code is working fine now.
    I have another problem now.
    The user can make a choice between a department or an employee.
    The validation works fine when a schedule is given to a employee (choossing a department from the department list and a employee from the employee list)
    But if the user wants to give a schedule to a department(one or more employee depending on the employees of that department) then he chooses the department from the department select list, leaving the employee select list empty. When i want to save these changes, i get a invalid number error. I tried making the validation conditional for when the employee item is null.
    But still i get invalid number.
    Any suggestions how i could solve this problem?
    Thanks,
    Diana

  • SkillBuilders Modal Page is not working in Apex 4.2

    Hi All,
    I am trying to set up an example in apex.oracle.com of an application developed in Apex 4.1 and the SkillBuilders Modal Page plug-in is not working.
    To show this situation, I created a simplified version of the application, with only two pages, in apex.oracle.com.
    Workspace: EDIAZJORGE
    Username: TEST
    Password: test123
    Application: 66464 - Modal Page Sample
    When Page 3 loads, a Dynamic Action is executed to open Page 2 (Interactive Report) as a modal page, but it is not working (the modal page does not open).
    Please notice that this is working in Apex 4.1, and the Embed in Frames property in my application is set to Allow.
    I appreciate any help.
    Thanks,
    Erick
    Edited by: ediazjorge on Jan 30, 2013 3:20 PM
    Bump!

    Erick,
    This is due to a change that was made to the Dynamic Actions framework in 4.2. The workaround for now is to change your event to resource load on the DOM window object.
    It's working now. In the next release of the plug-in you'll be able to go back to the Page Load (ready) event.
    Regards,
    Dan
    blog: http://DanielMcghan.us/
    work: http://SkillBuilders.com/APEX/

  • Authentication function not working in APEX but works in pl/sql

    Greetings, Jim here.
    I have written a very simple authentication funtion which uses the dbms_ldap package to authenticate using the userid and password from the login page.
    I've tested this function thru pl/sql and it returns true and false accordingly.
    I've created a custom authentication schema and in the authentication function I have return myfunction;
    The problem is, when called thru APEX, it appears to always return true and lets the login proceed, even if the password is correct. I know its using the function due to the fact that if I enter a bogus function as the authentication function, APEX spits up a message saying so.
    So, I know the function works, but I don't know why it does not work with APEX. Posting function below.
    CREATE OR REPLACE FUNCTION ODBS.CUSTAPEXLOGIN (p_username IN VARCHAR2,p_password IN VARCHAR2)
    RETURN BOOLEAN AS
    retval PLS_INTEGER;
    emp_session DBMS_LDAP.session;
    ldap_host VARCHAR2(256);
    ldap_port VARCHAR2(256);
    ldap_user VARCHAR2(256);
    ldap_passwd VARCHAR2(256);
    ldap_base VARCHAR2(256);
    BEGIN
    ldap_host := 'oraldap';
    ldap_port := '389';
    ldap_user := p_username;
    ldap_passwd := p_password;
    ldap_base := 'cn=users,dc=company,dc=com';
    emp_session := DBMS_LDAP.init(ldap_host,ldap_port);
    retval := DBMS_LDAP.simple_bind_s(emp_session,('cn=' || ldap_user || ',' || ldap_base),ldap_passwd);
    if retval = 0 then
    return true;
    else
    return false;
    end if;
    EXCEPTION
    WHEN OTHERS THEN
    begin
    if sqlcode = -31202 then
    return false;
    end if;
    end;
    END;
    /

    Hi Jim,
    Can you clarify this -
    The problem is, when called thru APEX, it appears to always return true and lets the login >proceed, even if the password is correctThat implies you're saying your authentication function ALWAYS returns true? Is that correct? Also 'even if the password is correct' doesn't read correctly to me, did you mean 'even if the password is incorrect'?
    You then say -
    now the function works, but I don't know why it does not work with APEX.So by 'does not work' you mean in APEX it is always returning true therefore allowing you to login regardless of the username/password you use? Is that correct?

  • Switch Theme is not working in apex 4.2.Plz  help me out.........

    Hi.......
    Switching from one theme to another theme is not working in apex 4.2..............
    Thanx in advance

    Hi!
    Same problem.
    Upgraded from 4.1 -> 4.2.
    Change theme from slightly modified Green theme (in mine case 101 is number and original was 11, One level Tabs) to Theme 25 Blue Responsive.
    Login page for instance doesn have "Login Region" for instance (not in LOV). And all pages are softly said strange.
    All have DISPLAY problem described on "http://1.bp.blogspot.com/-GzseTk6Lpes/UHvJkg9GulI/AAAAAAAAHRQ/Wt406GGZADQ/s640/Screen+Shot+2012-10-15+at+10.25.29.png", but without many parts that Dmitri describe.
    Rg
    Damir

  • Oracle dbms.set_role does not work in APEX application

    Hi, in our j2ee applications, we use secure application role. Basically, the data source use the app user schema to connect to the database. the app user only has create session privileges. the database logon trigger will copy a set of attribute to the local secure context. (ip address, session user, client id, application name). The applications explicitly invoke the stored procedure sec_mgr.set_role before any DMLs are executed.
    the sec_mgr.set_role will check the local context attribute , authorize the ip, application name, and set an appreciated role to this session based on session user.
    we want to apply the same framework to the APEX application. First, we change the paring schema to the app schema which only has create session privilege. then we put the plsql code in which sec_mgr.set_role is called in the application builder --> shared components ---> edit security attribute ---> Virtual Private Database (VPD).
    however, we got the error ORA-06565: cannot execute SET ROLE from within stored procedure
    the sec_mgr.set_role is defined as invoker's right(AUTHID CURRENT_USER)
    do i missing something in APEX to get it work?
    Thanks

    Please explain it does not work in APEX? Is the application updating tables that have a trigger? APEX does NOT override trigger actions. Is it possible the values your trigger is looking for are NOT available in your APEX application? Can you post the trigger code here for review?
    Thank you,
    Tony Miller
    Webster, TX
    What if you really were stalking a paranoid schizophrenic... Would they know?
    If this question is answered, please mark the thread as closed and assign points where earned..

  • I wanted to send a push notification, unfortunately it does not work. The page will not load. Anyone know why?

    I wanted to send a push notification, unfortunately it does not work. The page will not load. Anyone know why?

    Push notifications, I believe, is only for iOS.
    If it is for iOS, take a look at Using Apple push notifications with Digital Publishing Suite | Adobe Developer Connection

  • UIComponent broadCastAction is not working in mobile page

    We are using the broadCastAction in one of our critical flows to submit to an action in Managed bean but we are facing issue in our ADF fusion web app for mobile . When we create a page with mobile render option selected the broadCastAction is not getting triggered . broadCastAction shows null in the getter of BroadCastAction.
    <tr:commandButton text="AutoSubmit" id="cb2"
    action="processResponse"
    binding="#{pageFlowScope.testBean.braodCastAction}"
    rendered="false"/>
    This is working in normal page without "render in mobile" selected , we need a solution for it to work on mobile compatible page as well

    Hi Frank
    UIComponent braodCastAction is from javax.faces.component.UIComponent . It is used to invoke action of a UI component through Java code
    if we have button like
    <tr:commandButton text="AutoSubmit" id="testCommandbtn" action="processMobile"
    binding="#{pageFlowScope.mobileBean.braodCastAction}"
    rendered="true" />
    Then through getter method of broadcastAction we can invoke the action of this button using the below code
    braodCastAction.broadcast(new ActionEvent(braodCastAction));
    This is working in the normal jspx page but not working in a page where we select render in mobile

  • When iam using jdownloader for dowload, the firefox did not work at any page, as like there in no internet conexion?

    When iam using jdownloader for dowload, the firefox did not work at any page, as like`` there in no internet conexion?``

    you need to check whether '''jdownloader''' is compatible with the Firefox version you are using.
    -> Tap ALT key or press F10 to show the Menu Bar
    -> go to Tools Menu -> Add-ons -> Extension section -> check the Status of '''jdownloader''' extension -> if '''an update''' is available for this add-on then install the update -> Restart Firefox and check again check the compatibility -> if it is '''GREYED with Exclamation mark''' then it is incompatible with Firefox
    Try using this extension to force compatibility.
    https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/
    Check and tell if its working.

  • Select count(*) not working in Apex

    Hello,
    The following sql works in both SQL*Plus and Toad but not in apex.  The variable seems always to be 0 no matter what data I have on the table.
    Basically I try to flip the status from "Inactive" to "Active" only when there is no "Inactive" status left on the table.  Say there are 2 inactive statuses.
    If I delete one inactive status, the overall status should still be "Inactive".  However, with this code, it flips to "Active" status regardless. 
    I tried manually assign the variable to 1 and the status was not flipped.  Therefore, it sounds to me that the count(*) is not working in APEX.
    Does anyone experience this before? 
    Thanks in advance,
    Ning
    ===================================
    DECLARE
    v_status_count NUMBER;
    BEGIN
    UPDATE LGR_APP_STATUSES
    SET DELETED = 'Y'
    WHERE LGR_APP_STATUS_ID = :P42_LGR_APP_STATUS_ID;
    commit;
    select count(LGR_STATUS_ID) into v_status_count from LGR_APP_STATUSES
    where DELETED = 'N'
    and LGR_APPLICATION_ID = :p42_application_id
    and LGR_STATUS_ID in (3,8);
    IF (v_status_count = 0) THEN
    update lgr_applications
      set lgr_application_status = 'ACTIVE'
      where LGR_APPLICATION_ID = :P42_LGR_APPLICATION_ID;
    commit;
    END IF;
    END;

    Hi,
    In query you have used p42_application_id.
    Other statements use P42_LGR_APP_STATUS_ID
    Do you have that item? What is session state for that?
    Regards,
    Jari

  • ScriptLink tag not working for application page sharepoint 2010

    <ScriptLink> tag not working for application page sharepoint 2010 for including javascript in application page, it appends either 1033 or _layout to path specified for javascript.But javascripts are located in custom document library on site and not
    in _layouts folder.
    Please help and explain in details as I tried lot on this.

    Hi,
    Use the following line of code
    <SharePoint:Scriptlink runat="server" Name="~sitecollection/Style Library/[YOUR SITE]/js/functions.js" Language="javascript" />
    Thanks,
    Vivek
    Please vote or mark your question answered, if my reply helps you

  • Interactive Reports not working with APEX listener

    Hi,
    I have posted this question APEX listener forum couple of weeks ago but very few responses.
    If any one from here can help then it would be great.
    Interactive Reports not working with APEX listener
    Best Regards,
    Baig

    Sorry for late response.
    It was a firewall issue

  • Why do hyperlinks not work in a pdf when it is signed?

    Why do hyperlinks not work in a pdf when it is signed?

    Adobe reader there any payment to be no problems or allow sharing through hyperlinks.
    Dentistas en lima

  • Hyperlinks not working correctly when converting word doc to Web Page, Filtered

    I have created a word document (MS Word 2013) with Table of Contents and their links to particular sections and all the hyperlinks works fine in the word document. But when I convert this document into Web Page, Filtered then after a specific point
    the hyperlinks not pointing to their respective sections instead they are pointed to the end of the page.
    I have checked the page source of the HTML document and found that the table of contents have hyper links but the respective sections doesn't have the hyper link code and hence click on the a section didn't find the that section and go to the end
    of the document.
    I have tried to convert into PDF and hyperlinks worked fine.
    Please advise me how to resolve this issue.
    Thanks in advance
    Deepak

    Hi Deepak,
    I'm marking the reply as answer as there has been no update for a couple of days.
    If you come back to find it doesn't work for you, please reply to us and unmark the answer.
    Best Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Image hyperlinks not working for internal menu pages

    Hi, I'm after some help with problems publishing my iweb site to an external folder. My website is www.gingham.com.au and I have uploaded it using Fetch.
    My main problem is with the menu bar - it's an image which i have then created hyperlinks over various headings to link back to the other pages in the site. This isn't working - any ideas on what I could check for?
    I also had an issue with the T_String error, i read a little about it but am very new to websites so deleted the first line of code as was listed in another post.
    Thanks for any feedback.

    I have had problems with link not working or they forget where they are supose dto link too.
    At one time I had a HP web page link appearing in the text box. Not sure why, I haven't visited the HP website for months.
    I just have to go top-down and reassign all the links, and do it a few times.
    I think the problem comes from when designing the website from teh start,if you are like me you will be adding and deleting elements and changing lots of stuff to make the site look the way you want.
    I think iWeb has problems with the deleting of objects, the more you change in a single session the more problems you will get.
    Now I quit iWeb on a regular basis, but now I have setttled for a style of my pages I will not be making big changes so iWeb should settle down for me.

Maybe you are looking for

  • Changing column name in Line chart

    Hello All, We are BO 4.0 SP6. We are creating WEBI reports which includes charts as well. We have two columns " Current Period" and "Last Period" and using them in WEBI report and Line chart. In the table I am displaying the column name " Current per

  • Latest glibc breaks pacman

    Am i right in saying this? Of course if that's the case i'm sure the developers are aware of this and are recompiling pacman to use the new glibc version    I'd do it myself but abs fails to update too...and since this is a fresh install...my /var/ab

  • Problem encoding video project

    I am trying to export a project that I have created but keep having problems encoding it. I can start the queue fine but it keeps failing with the following warning: - Source File: D:\DOCUME~1\PR\LOCALS~1\Temp\Exit Festival 2009_2.prproj - Output Fil

  • Need to run Labview with very low power

    Hi all, I'm looking for a way to run Labview with only a few watts.  Hopefully only two watts.  The setup will be powered by solar cells and would run continuously.  (Storage batteries would run it at night.)  The problem is that the system requirmen

  • Maximize Graph on Screen to full screen

    I am looking to simply take a waveform graph and when I click a button next to it, I want to maximize it to full screen size.  Whn I mess with teh bounds properties, the buttons at teh bottom of the graph dont grow accordingly and it appears messed u