How to create links to other pages i create??

I have finished my "homepage" and it has 5 buttons on it.("home",
"Contact us", etc.).
I have no idea how to create links to other pages i create.
For example, if the user clicks on "Contact us", i wnat contact information
to appear. So, do i create another html document that will contain contact
information and then call that page whenever the user clicks "Contact us". Or
do i just create another applet that contains contact information and display
the applet in the appropriate area, whenever the user clicks "contact us".
Hope that wasnt confusing. Bascially, I am sitting here looking at my buttons, not knowing
what code to put under the actionPerfomed part of each button.
thanx
trin

... judging from your question... the best way i think is to create another page...
.... so when ur user clicks on Contact Us..... he/she will be taken to another page...
there are other techniques besides this.... but it is always better to stick with the easiest one
... so you need to create separate pages for all of your links....
... if you have any questions... let me know
.... have fun

Similar Messages

  • How can I create links to other pages in iBooks that will function in PDF?

    Hi,
    I know some people have asked previously how to create links to other pages of their book within iBooks. I having an issue with this myself that I haven't been able to resolve. I am able to create the links, and they seem to function within the program, however, once I export the document as a PDF file (the format in which I need to have this ebook!), the links seem to be non-functional. Does anybody have a fix for this?
    Thank you so much for any suggestions you may have!! I really need to figure this out for my client.
    Regards,
    Meggyn

    Exporting as a PDF does alter/lose/remove certain functions. Adobe Acrobat has its own page navigation system.
    A lot of the hidden engine of iBooks Author is basically very similar to building a website! so links and books marks are an "internal" function.
    IF you  have Acrobat and not just the Adobe Reader, you can make links.  I have never needed to try, but  I see a working link related index  in the many software manuals  I have.

  • Create links to other Pages documents

    I am a singer and have been using a binder with all my lyrics in it for shows. I got an iPad for my birthday and want to use it in the binder's place. With each show the set list changes and I'd like to be able to create a setlist document in Pages with links to other Pages documents with the corresponding lyrics. The lyrics documents would be static; the setlist document would always be changing. The links in the setlist document would be like hyperlinks of sorts, except instead of taking you to the web, they would take you to other Pages documents in the My Documents folder in Pages.
    I've searched all over the place for a solution. I've even tried using spotlight to search for the lyrics documents as a workaround, but spotlight doesn't find the Pages documents. Is this something I can set up on my MacBook and then transfer to my iPad? Is there other software besides Pages that can do this?
    Thank you in advance!

    I think it would be much simpler to save your lyrics as pdfs and use one of the many dedicated music apps that allow you to create setlists. I use forScore (love it!), but you might also check out Unreal Book and Music Reader.
    If you have a Mac, of course it's a cinch to print any file to PDF. For windows, possibly the free version of CutePDF would work for you.
    EDIT I see you already have these printed out in binders. Just scan to PDF, then.

  • How to check links on a page without creating a site?

    Setting up a site in Dreamweaver is a chore when all I'm developing is one html landing page, an html email, mockup presentation, testing source code, ...
    Is there a any way Dreamweaver can check absolute urls to external sites or local relative image urls aren't broken without having to config a site?
    Or maybe there's a service I can paste the html into and it'll tell me if links are broken?
    Thanks,
    DAN

    Link Validators
    http://www.lithopssoft.com/hlv/index.html
    http://www.linxexplorer.com/linxexplorer.html
    Nancy O.

  • How add a link of other page web

    Good Night,
    How can add a link in the ESS in the area of travel that can call other application WEB external?
    Kind Regards.

    FOr Adding services check following link
    ESS / MSS Configuration (SAP Best Practicesfor SAP HCM V2.600) (N06)
    http://help.sap.com/bp_hcmv1600/BBLibrary/Documentation/N06_BB_ConfigGuide_EN_US.doc

  • How do I save a 2 page pdf (created in Illustrator) to be used in a web site?

    How do I save a 2 page pdf (created in Illustrator) to be used in a web site?
    When I save my Illustrator file as a pdf, it is about 2600 kb, my web site admin will only allow storage of 5000 kb. I tried to "save for the web", but that only saves the first page of my document. Any suggestions other than paying for more storage???

    What pdf preset are you using? Try smallest file size rather than illustrator default.
    Save for web does not do PDF, so no multipage.

  • Does pages 6.0 support internal links to other pages?

    I want to create links inside of Pages 6 to take the reader to other locations in the document. I need to have these fully functional links exported with the document into pdf. Has anyone actually tried this in 6.0? Des it work?

    Keynote is a version number ahead of Pages, because it was the first iWork app that came out. Numbers was the last and is one version behind.
    Pages '09 has Bookmarks that do the internal linking.
    It is Pages 5.2.2, the current version, that is brain dead.
    Peter

  • JSP links to other pages

    Hi,
    I have a web app that does not use a framework. I do try to follow the MVC pattern though by having all requests go through one Controller Servlet.
    I have a Home page jsp, which only has links to other pages. The Home JSP does not have a <form>. Just <a href's.
    These links take the user from the home page to other pages which do work and submit forms. However, some of these pages (jsp's) need to be prepopulated with data. For example, I have a page which gives a random phrase from the Database when clicking on the submit button. But when I first get to the page by following the link from Home Page, it is empty. I want to arrive at the page and have it already gotten the first phrase for me.
    One option I thought of is to have the link from the Home Page which took me to the Random Phrase page, go through the Controller servlet initially and have the Controller servlet, after having done the work of retrieving the phrase redirect to the Random Phrase page.
    If this is the correct approach, how can I accomplish this? How do I have a <a href link in a jsp, redirect to a servlet right away without submitting a form or something?
    Thanks.

    So I put this in my home.jsp:
    <a href="/Household/randomPhrase.php">Random Phrase of The Day</a> In web.xml I have this:
    <servlet>
           <servlet-name>VHController</servlet-name>
      </servlet>
      <servlet-mapping>
           <servlet-name>VHController</servlet-name>
           <url-pattern>*.php</url-pattern>
      </servlet-mapping>According to the above, when I click on this link it should take me to the Servlet's doGet() method.
    However, when I actually click on it, I get the following exception in the browser:
    java.lang.NullPointerException
         com.myapp.servlet.VHController.doPost(VHController.java:47)
         com.myapp.servlet.VHController.doGet(VHController.java:35)All I do in the doGet() method is:
              response.setContentType("text/html");
              PrintWriter out = response.getWriter();
              out.println("URL: " + request.getRequestURL());
              out.println("URL: " + request.getRequestURL());
              out.println("METHOD: " + request.getMethod());Could anyone suggest what the problem may be? Why I am not getting the expected behavior?
    Thanks.

  • How to Auto LInk to a page

    I'm new to using flash in websites, and i need to know how to
    automatically link to a page at the end of my flash movie. I need
    to know what code to use and exactly where to put it. Below is a
    copy of my object code. Any help would be great. Thanks!
    <object classid="clsid
    27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,42,0"
    id="intro" width="750" height="580">
    <param name="movie" value="intro.swf">
    <param name="bgcolor" value="#000000">
    <param name="quality" value="high">
    <param name="allowscriptaccess" value="samedomain">
    <embed type="application/x-shockwave-flash"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    width="750" height="580"
    name="intro" src="intro.swf"
    bgcolor="#000000" quality="high"
    swLiveConnect="true" allowScriptAccess="samedomain"
    ></embed>
    </object>

    Hi,
    You need to put the code inside your flash movie rather than
    in the html that you have shown.
    Open your movie and make a new keyframe on the last frame of
    your movie. Then open your actions panel and place the following
    code in....
    getURL("
    http://www.yourwebsite.com");
    Cheers
    Alan

  • Build a blank/other type of page which can show links to other pages

    Can someone please tell me how to build a blank/other type of page which can show links to other pages? I mainly want a page to show 3 links, once someone clicks on it, then it will go to a specified page. I tried using URL, but that did not work. Any advice is greatly appreciated. Thank you very much for your help in advance.
    -Grace

    Do a region (probably a HTML-based one is fine), enter in the HTML for your links, and that should be it. What didn't work about this?
    Your links probably should appear like this in your coding (use substitution variables):
    f?p=&APP_ID.:3:&APP_SESSION.
    In the above example, "&APP_ID." will resolve dynamically to the application ID that you are in, "3" is page 3 (change this to whatever page you want the link to be), and "&APP_SESSION." is the existing session number (if you don't include this, the user will receive a new session ID if the destination page is public or will be intercepted annoyingly to log in and get a new session ID which you probably don't want).
    Do not include the full http path. Just start with f?p... and everything is assumed to be relative to Apex on the current environment.
    Those are effectively the minimum requirements for a URL in Apex to go from one page to another in an app. You can add to that the additional URL parameters for Request value, Set items with values, clear cache, reset pagination, etc. if you need to. Check the Apex online help under "understanding URL syntax" for details on these.

  • Menus created using manual won't link to other Pages

    Created a site and had a menu created using manual which was linked to sub pages within the site. The menu was for specific pages not requiring access from the sites top level menu.
    The menu was working but now it is not possible to edit or replace the menu as there does not seem to be any way of adding the link to the required page. The dropdown box to the side of hyperlink stays greyed out and can't be accessed. This is only happening to links added using the menu widget under manual, ordinary text links seem to be OK.

    Welcome to the Apple Discussions. Confirm that there are no objects overlaying the navbar. How did you change the background, from the Inspector/Page/Layout pane?
    Happy New Year

  • Creating Links for other Web pages within Flash C23

    Hello Everyone,
    First of all, I'm sure you're tired of answering the
    questions regarding "Links". Although, I'm having a very
    difficult time with this issue. I just purchased Flash C23,
    taken all the tutorials from www.lynda.com, but
    I do not find answers for linking one web page to another
    within Flash C23. I have read all the answers
    on this forum and still can not get my buttons to link up to
    my other web pages.
    I have figured out how to create the buttons, although, I'm
    not doing something right when I try to link up my web
    pages. You have to realize I'm coming from Adobe Golive (no
    need for codes or scripts). I do not want to stop
    using Flash... Can someone help?
    Thank you so much, it's appreciated.

    replace 'siteName' with whatever you use to target your site
    in a browser. 'FranchelleDesigns' is what you named your page in
    GoLive.
    function loadPage(event:MouseEvent):void{
    var myURL:URLRequest = new URLRequest("
    http://www.siteName.com/FranchelleDesigns.html");
    navigateToURL(myURL,"_blank");
    my_btn.addEventListener(MouseEvent.CLICK, loadPage);
    EX: my website is
    http://www.damonedwards.net
    lets say I create some HTML page that I want to link to, and I save
    it as, ContactMe.html... this is what I would use in flash to link
    to it
    function loadPage(event:MouseEvent):void{
    var myURL:URLRequest = new URLRequest("
    http://www.damonedwards.net/ContactMe.html");
    navigateToURL(myURL,"_blank");
    my_btn.addEventListener(MouseEvent.CLICK, loadPage);

  • How to create links to other solutions using C# MVC?

    I am creating a project with multiple solutions. I used MVC Framework. I have a problem on creating a link  for other solutions I added in the project. I'd like to include each solution to be executed in each tab that when I click one tab one solution
    will open. Is it possible? If possible, how can i create a link to access and execute other solutions?
    @rch13

    Hello,
    Specifically, this should be asked in the
    ASP.Net MVC forum on forums.asp.net.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book: Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C40686F746D61696C2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • How to add link to specific page in another PDF

    I'd like to create a link within a PDF to a specific page in a different PDF. As far as I can tell, the Create Link tool will only allow me to open another PDF on page 1. I know you can link to another page in the current PDF, but I need to link to a separate PDF. I have also found info on mechanisms for opening to different pages, but these are for opening using browsers or code.
    So, is it possible to link create a link in a PDF to a specific page in another PDF?
    Thanks for any suggestions.
    - John
    PS - I'm using Adobe 7.0 Professional.

    Try this...
    You can link to a specific page in a specific PDF from a bookmark. You navigate to the new view (page of a PDF) when creating the bookmark.
    When you want to do that with a link (as in selected text in the body of the PDF) you have to do it in two steps. Use any file open to create the link, then edit the properties of the link, select the Action tab, and change the action to Go To A Page View.
    That's how it works in Acrobat 8, but I'm betting it's the same in 7.
    Bear

  • How do I link all site pages to a new site page?

    Hello,
          I'm using Dreamweaver cs4 on a windows pc. I have 12 pages in my site with a vertical spry navigation bar. Each time I create a new page I then add that to the spry navigation bar. All the other pages don't show that new page in the nav bar. So, the spry nav. needs to be update site wide. Is there a way to update the spry navigation bar site wide in just a few clicks? Is there an easy way to link all the other page back to that new page? I have a template made but all my site pages are now detached from that template. Everytime I saved the template as a html file to create a new page the navigation bar had the word template in it so I just deleted it out of the code. As you can probably tell I'm pretty new to dreamweaver so any help will be greatly appreciated to say the least. I've checked pretty much everywhere I can think of for the answer
    Thank you for taking the time to help, dluthier

    Is there a way to update the spry navigation bar site wide in just a few clicks? Is there an easy way to link all the other page back to that new page?
    Yes, there are ways to have all the pages update when you make changes to a navbar.  However, the way you describe the situation, you currently have to do it all manually.
    Easiest way to update a navigation bar:
    1.  The use of serverside includes  -  here's a basic tutorial explaining what a SSI is and how it's done.
    http://bignosebird.com/ssi.shtml
    2.  The other is the use of templates - which you've tried.
    I have a template made but all my site pages are now detached from that template. Everytime I saved the template as a html file to create a new page the navigation bar had the word template in it so I just deleted it out of the code
    That's where you went wrong, you don't save the template with a new name and save it as a html file.  You need use:  Create New>from Template.  This way you create a new page from the master template and save it into the root of your site - and this is called a 'child page'.
    Using DW Templates:
    http://www.adobe.com/devnet/dreamweaver/templates.html
    The differences between using SSIs and DWTs (template file):
    With a SSI file, you make changes to the file and all pages with the include will will update automatically and you only need to upload the one SSI whenever you make a page.
    If using a template, whenever you make a change, again all child pages are updated, but you have to upload *all* the changed pages.
    Hope this helps.
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://twitter.com/nadiap
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://csstemplates.com.au/

Maybe you are looking for

  • How do I download icloud on to my macbook pro? It does not automatically have it...

    Just need a download link for icloud so I can install it on my macbook pro. Already have an icloud account on my phone, but not on my laptop... Thanks!

  • External HD "Not Readable" after Boot Camp Installation

    After installing Windows XP on my Mac, I switched back over to OS X and tried to access my external hard drive which greeted me with the message: "The disk you inserted is not readable by this computer." I assume that the Boot Camp process must've af

  • Daisy chain an ipod to Ext Drive in a MBA?

    I have a G-Drive with 2 firewire and 1 usb ports. The MBA has -as we all know-only one usb port. So I wonder if I could daisy chain my devices this way: MBA---(usb cable)---G-Drive---(firewire ipod cable)---iPod ....Is that possible??? (I didnt try i

  • How to hide front panel objects behind other front panel objects

    Hi, I need tho change an existing project and to make it simple just want to hide some front panel objects behind others. But I can't find how to put the one I wnt to the front hiding all others. So now there are some in front that should be hidden.

  • 2D Closest Pair Problem

    PROBLEM: Given an arbitrarily number of data points in 2-d space, this algorithm finds a pair of data points with minimum Euclidean distance from each other. I read in points from a data file as follows: 100 //number of points 12.5 100.2 //each line