Hyperlinked content in a page ...please help

Hi,
1. I have some html and asp.net pages which need to show up inside a region of a portal page. I am able to add hyperlinks to these pages but I am not able to figure out how to have the contents of those pages automatically appear in that region.
To put it another way, i want the contents of a site (e.g. http://mysite/default.aspx) to appear in a region without somebody having to click on a hyperlink to navigate there.
2. I want to maintain portal integrity while navigating amongst the pages of that site. So while I see the submit button of my default page, the page that it takes me to should also show up in that region.
I have tried to find something called a "url folder" to accomplish this and I am logged in as orcladmin but I am just not seeing it.
I would greatly appreciate any help.
Thanks
Sai

Sai,
How about using IFRAMEs ? There is an IFRAME portlet available on portalstudio.oracle.com
Hi,
1. I have some html and asp.net pages which need to show up inside a region of a portal page. I am able to add hyperlinks to these pages but I am not able to figure out how to have the contents of those pages automatically appear in that region.
To put it another way, i want the contents of a site (e.g. http://mysite/default.aspx) to appear in a region without somebody having to click on a hyperlink to navigate there.
2. I want to maintain portal integrity while navigating amongst the pages of that site. So while I see the submit button of my default page, the page that it takes me to should also show up in that region.
I have tried to find something called a "url folder" to accomplish this and I am logged in as orcladmin but I am just not seeing it.
I would greatly appreciate any help.
Thanks
Sai

Similar Messages

  • Adobe Content Viewer problem. Please Help me...

    Hi after updating online. Folio, I tried to update the trial version of the publication on my iPad but I get this message: "the issue isavailable for dowload, but new signing for an application version. Update the application from the App Store. "I went to the AppStore and was not any update of the Content Viewer ... I deleted the version on my iPad I downloaded again ... but without success gives me the same problem ... Please help me ... how can I do??
    thanks

    Hello Bob and thank you for responding so quickly ... Would you be kind enough to send me the link where I can download older versions of Folio Builder and Folio Producers Panel tools for InDesign 5.5. I'm looking for them but I can not find them.
    Thank you for your patience.
    Il giorno 21/gen/2012, alle ore 16:18, Bob Levine ha scritto:
    Re: Adobe Content Viewer problem. Please Help me...
    created by Bob Levine in Digital Publishing Suite - View the full discussion
    As discussed in numerous threads already, the new viewer has not been approved by Apple yet.
    If you’re a pro or enterprise customer you can create your own viewer app. If not, you’ll have to wait or roll back to the older tools.
    Bob
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4155907#4155907
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4155907#4155907. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Digital Publishing Suite by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Well, i was on my laptop now and all of a sudden a pop up message appeared and said "your download is complete" so i went to go check it out and it was 'MacProtector'. i cant delete it and it keeps opening unwanted web pages, please help me sort this out?

    Well, i was on my laptop now and all of a sudden a pop up message appeared and said "your download is complete" so i went to go check it out and it was 'MacProtector'. i cant delete it and it keeps opening unwanted web pages, please help me sort this out someone?

    Refer to:  http://cantalktech.com/2011/05/08/mac-protector/.

  • Hi I am using Iframe with src="abc.mht" file. i want to view the mht file content in same window.please help.. Thanks in Advance

    Hi I am using Iframe with src="abc.mht" file. i want to view the mht file content in same window.please help..
    Thanks in Advance

    This is not a Java problem, this is a WEBBOT problem.
    I suggest that you research the topic in your FrontPage help files.
    Yes, we do know how to solve this problem using ordinary HTML and JSP. The sample code that you've posted implies that you are looking for an extremely different solution. To put it another way, it looks like you're logging onto the Federal Aviation Administration's forums and asking them how to go from Chicago to New York by train.
    But in any case, if you can't find the information in FrontPage, I'm 100% certain that if you went to www.microsoft.com and searched for FrontPage and downloads, and skipped the results that actually want you to download FrontPage, you'll get some sample code.

  • I am working on big project and in accidentally flatten the file and i saved it as PSD in then I exited Photoshop. the next time when i open the file it is merged on one page. please help!

    I am working on big project and in accidentally flatten the file and i saved it as PSD in then I exited Photoshop. the next time when i open the file it is merged on one page. please help!

    Flattening and merging are very similar. The main difference is merging keeps the transparent areas, whereas flattening removes all transparent areas by giving it a white background. A good example of flattening is a jpg image.
    Since you have closed the file by closing photoshop, that means that the history is now gone, no way of undoing.
    So that leaves you with two choices.
    You can either recreate the whole document.
    Or you can make selections of areas you are keeping and moving them one at a time to new layers. Keep each object on a separate layer. Then redo the area behind those objects.

  • After ios 8 numbers doesnt have cell content bar...please help

    fter ios 8 numbers doesnt have cell content bar...please help

    It seems to be broken on some ipad 2 installations. I found a workaround. Click on a cell that has text in it. The bar then activates. You can then move to other cells and keep the bar. When you end your edit you are back to no bar unless you start with a text cell. Hope they fix this soon.

  • Javafx deployment in html page(please help me urgent)

    i used the following method to deploy javafx in an html page.
    javafx file is:
    package hello;
    import javafx.scene.*;
    import javafx.stage.Stage;
    import javafx.scene.text.Text;
    import javafx.scene.text.Font;
    import javafx.scene.paint.Color;
    import javafx.scene.effect.DropShadow;
    Stage {
        title: "My Applet"
        width: 250
        height: 80
        scene: Scene {
            content: Text {
                x: 10  y: 30
                font: Font {
                     size: 24 }
                fill: Color.BLUE
                effect: DropShadow{ offsetX: 3 offsetY: 3}
                content: "VAARTA"
    I save the file as HelloApplet in a 'hello' named folder in my D:
    after that i downloaded from internet html code as
    <html>
        <head>
            <title>Wiki</title>
        </head>
        <body>
            <h1>Wiki</h1>
            <script src="dtfx.js"></script>
            <script>
                javafx(
                    archive: "HelloApplet.jar",
                    draggable: true,
                    width: 150,
                    height: 100,
                    code: "hello.HelloApplet",
                    name: "Wiki"
            </script>
        </body>
    </html>now i typed in DOS prompt as javafxc.exe HelloApplet.fx & i got the class files .
    _The main problem which is coming is how to create HelloApplet.jar file which is used in the html page without which the html page is not displaying the javafx script. Please help me urgently i am in the middle of my project & stuck up due to JAVAFX                   i am using WIndowsXP & javafx-sdk1.0 when i am typing jar command inside hello package it is displaying invalid command.in DOS prompt. If there is any other method to deploy javafx in html page then specify it also.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Crossposted: [http://forums.sun.com/thread.jspa?threadID=5323288].
    Please don't crosspost without notifying others. It is rude in terms of netiquette. Stick to one topic.

  • Junk characters like" � � "displayed in the jsp page please help.

    Hi,
    I am getting junk characters like � � displayed in the jsp page.
    In the JSP page i used javascript "& nbsp" for appending spaces to a string "CCR" to get "CCR " .
    Now the Resultant string "CCR " has three spaces appended to its right.
    This String is set in session in that JSP page.
    In the next JSP page i am getting that string from session.
    After getting the string the "substring" function is performed to get only the first 5 charcters of the string. Now the result is displayed as " CCR� � " with has last 2 characters as junk values � � insteed of displaying as "CCR ". Please help me in solving this issue.
    Please note that initially the sting "CCR" is got from the Oracle database in Solaris Machine.
    Regards,
    Vijay

    have you tried:
    strenuously inspecting the string that is coming from the db? do an actual loop over the string, character by character, dumping to System.out to make sure the characters are EXACT coming out of the db.
    note you have to append " " not just "& nbsp"
    post the code that is doing the output. the relevant bean code, the jsp, everything relevant - WITH COMMENTS discussing where things are happening.
    Also, is it "weird characters" in the browser only? have you done a view source on the actual html source that the browser is rendering (right click in IE and click view source). browsers can act odd if you don't feed then exactly what they want, and it looks like you're feeding it escaped characters that it is rendering as something else.

  • MY FONT LOOKS DIFFERENT IN INDESIGN PAGES PLEASE HELP!!!!!

    Hello, I have a majo problem here. I have all my pages written in one font, Arial Narrow, however the width of the font looks different from page to page, it looks bold on page 1 and 2, and on page 3 it looks fine,  is there any invisible setting applied to the whol page? why does it look bold? I did try toprint them, they do look different, also, there is no stroke  set, i checked, and color is set to black not registration. Is there anything else I am missing???? Please help!!!!

    Transparency isn't something you would adjust, per se.
    Imported art may have transparency in it (like a transparent background), or you may have applied an effect like a glow or a drop shadow, or used a blending mode (all of which are transparency effects) on an object on your document page, or even adjusted an object's opacity in the effects panel to make the background show through (this is true tranparency inthe classic sense). Any of these things will result in ID redrawing the page and "emboldening" the type on that page.
    There is no way to remove the eefect other than to remove the transparency from the page (if you are showing the icons for it in the pages panel, whcih you set in the panel options, you'll see a small checkerboard next to the page icon in the panel if there is transparency in use). To assure that all pages look the same if you are going to use transparency on any page, you can add a transparent object to the master page.

  • HTTP error 0 testing not serving php pages please help

    Hello everyone,
    I am using DWCS3, the free version of MAMP on my MacBook Pro Leopard 10.5.6.
    I have built a customer registration form with a Transitional <!DOCTYPE>. I have been following the instructions from The Essential Guide to Dreamweaver CS3, using a wizard to build a registration form, in chapter 15.
    When I try to preview the form in the web browser, I get a white screen.
    When I click the live data button I get an; HTTP error 0 message occured while attempting to request the file http://localhost:8888/mywebsite/page_S9INUKZB.php from the testing server.
    possible reasons:
    1. Files in MacHD/Applications/MAMP/htdocs/mywebsite with .php extension are not being executed by the testing server.
    2. The MacHD/Applications/MAMP/htdocs/mywebsite does not map to http://localhost:8888/mywebsite URL on the testing server.
    I've gone over the site definitions several times and have configured MAMP differently twice, using ports 80 and 3306 and also 8888 and 8889. The same problem has happened in both instances here is my site definition info:
    Local info:
    Site name: mywebsite
    Local root folder: MacHD:Users:myname:Desktop:mywebsite
    links relative to document: http://localhost/
    Remote info:
    Access: Local/Network
    Remote folder: MacHD:Applications:MAMP:htdocs:mywebsite
    Testing server:
    Server model: PHP/MySQL
    Access: Local/Network
    Testing server folder: MacHD:Applications:MAMP:htdocs
    URL prefix: http://localhost:8888/mywebsite/
    Web sharing is turned off.
    Dreamweaver/Preferences/Preview in browser/preview using temporary files is turned off, yet in my HTTP error 0 message there is a string of characters after the page name, suggesting that dreamweaver is using temporary files.
    I have attached a compressed copy of the customer registration form maybe the problem is the page. I have gone round and round in circles with this and I can't seem to sort it out can somebody please help me.
    Thankyou.

    Hello David,
    Thanks for getting back to me, sorry for the late reply, I've been away for a few days.
    I have done what you suggested, and altered the links relative to document: http://localhost:8888/mywebsite/
    I have also restarted dreamweaver and mamp.
    Nothing has changed when I try to view the page through the browser I get a white screen and the HTTP error 0 is still displaying, With the same message as before.
    I have since created a new form, connected it to my user table, and populated the table with info, and that worked.
    I then added the php validating code as suggested in chapter 15, pages 481 through to 485. I've also checked the code against your example page register_user_03.php.
    However when I put the page on the testing server and try to view it, all I get is a white screen, and an HTTP error 0 the testing server is not executing pages with a .php extension. Or the URL prefix isn't mapped properly.
    I have also checked all my settings in MAMP and left a question on the forum but they haven't answered.
    Is there a setting or connection that I need to enable in Apache? I'm stumped.
    I'm hoping you might have some tricks up your sleeve.
    Thanks

  • Got error on my page please help me...

    Hi, please help me in my problem. i have created a page
    locally and when
    i test it it works fine but when i upload it to my site
    there's an error
    occur the error is:
    "java.lang.ArrayIndexOutofBoundsException" i have no
    idea with this error and why it occurs. please help me
    john

    dimaint wrote:
    > Can you provide a code snippet? Does it give you a line
    number where exception is being thrown?
    this is the error: Ooops! an error occured. Mesage: 4 Error
    Type: java.lang.ArrayIndexOutOfBoundsException
    the code is right here:
    http://filecargo.com/dw.php?id=1151547203&/act_savemanual.cfm
    Thank you,
    John

  • Reconfigured itself, now stuck on test page, please help

    I went to go listen to my ipod on my way home from work this morning. When I turned it on, it went to a weird screen and said it was reconfiguring. I followed all the prompts it told me to. However, it came to a to a certain screen and it wont let me do anything. the black strip up top reads "accessorize test", it follows with "please plug FW LCD ID : 1 FWPWR : 0" I pressed all the buttons, nothing. I tried holding down the play/pause button and it wont even shut off. When I finally got home, I plugged it into a power source, still nothing. I thought maybe it needed to be hooked to the computer. clicked on itunes and its not even recognizing that its plugged in. I really cant get it to do anything. I dont know what to do. Ive had it over a year so I cant find an appropriate tech support number. it says accessorize but you cant really hook it up to any accessory thing so I have no clue. PLEASE HELP ME

    Try Resetting your iPod. Toggle the hold switch off and on a few times then hold down the MENU and SELECT (centre) buttons for five or ten seconds until you see the Apple logo appear then the menu button to go to the normal display: How to reset an iPod

  • Hi I am new to Apple devices, i got a new Ipad mini and i am trying to download skype from the Istore,it asks me to review my account and if i give all the details and click on next, it come to the same page,please help

    Hi I am new to Apple devices, i got a new Ipad mini and i am trying to download skype from the Istore,it asks me to review my account and if i give all the details and click on next, it come to the same page,please help

    Oh thank you very much, i was worried after a whole day's hard work but most important that i had lost my photos, i don't understan the photo,shared and albums? I have a lot of photos in my albums that it didn't let me delete, yet i could delete a lot of others, could you explain this to me please

  • TS1372 my ipod classic is in disk mode, can,t get out of it, it says error 1439, what can i do, i tried everything, they said in the apple page, please help me.

    dear, Friends,
                         I have ipod classic, My ipod is in the disk mode, can't get out of it, it says error 1439, i had tried too many times, with trying to reset the ipod or restore it, but failed, please help me in this what can i do.

    Try going to settings and reset all settings. This worked for me.

  • My ipad2 shown sync itunes usb all time and I can't play ,can't do anything , can't entry 1st page , please help me and we walked to studio (Thailand)

    Hello
    We can't open my ipad2

    Studio(Thailand) try to slync but ipad2 have shonw error 40 , please help to suggest me

Maybe you are looking for

  • CIN-RELATED

    Dear consultants!! 1) how the process will takes place for subsequent delivery free of charge? any excise duty, taxes are levied if so how to configure them? 2) free of charge goods configuration relevant to CIN?? Pls explain me the things clearly. 

  • CRM and LAE problem

    Dear all, I hope someone knows the solution of my problem. We are implementing a Leasing solution. It includes CRM, R/3. Normally if a Leasing contract is created in CRM, it will transferred to R/3 automaticllay and prpcessed by LAE (Leasing Accounti

  • QuickTime won't show videos

    I have QT 7.4.5 and Safari 3.1 on a MacPro Intel 10.4.11 QT will not run any of the videos on the Apple website, I can get the sound but no picture. I can use my Firefox browser and it will work just fine .

  • Can not check my balance in my iphone 4s after update to 7OS

    can not check my balance in my iphone 4s after update to 7OS

  • It says ff4 is not compatable with norton or avg.....why is this?

    i downloaded ff4 beta was a nitemare, but heard good things bout new version, downloaded it now pc is slow an says ff4 is not compatable with norton or avg antivirus '''bold text'''