Should I use frames or what?

Here is my dilema. I'm working on a pretty big site. The site
has about 8
sections each which have about 10 subsections. I basically
created 8 pages
total for all of the subsections but I don't want to have to
create hundreds
of pages for all the subsections so since all the pages look
exactly
identical in the subsections is there a way I could just make
it so the only
content that changes when you go to one of the subsections is
the main
content table? I'm assuming to do this I would need to use
frames unless
there is another way I don't know of yet? Anyone got any
pointers?
Best Regards,
Chris Jumonville
503.277.3553

Chris Jumonville wrote:
> Here is my dilema. I'm working on a pretty big site. The
site has about 8
> sections each which have about 10 subsections. I
basically created 8 pages
> total for all of the subsections but I don't want to
have to create hundreds
> of pages for all the subsections so since all the pages
look exactly
> identical in the subsections is there a way I could just
make it so the only
> content that changes when you go to one of the
subsections is the main
> content table? I'm assuming to do this I would need to
use frames unless
> there is another way I don't know of yet? Anyone got any
pointers?
Frames wouldn't alleviate the need to create the many pages.
You'd still
need a seprate file for each page within each subsection.
What you're looking for is some manner of server technology -
be it ASP,
PHP, etc. - that allows you to utilize a template for the
page, and load
in only the content specific to the topic.
*** Remove the DELETE from my address to reply ***
======================================================
Kevin Scholl
http://www.ksscholl.com/
[email protected]
Information Architecture, Web Design and Development
We are the music makers, and we are the dreamers of
the dreams...
======================================================

Similar Messages

  • Have a .mp4 video and would like to use it to burn to a disc and be able to be played on a dvd player, should i use idvd or what? also have a .avi file what should i use? thanks please help

    Have a .mp4 video and would like to use it to burn to a disc and be able to be played on a DVD player and a .AVI file what program should I use idvd?

    iDVD may or may not work with them – depending what kind of MP4 and AVI each is.
    Drag them into iDVD and preview them to check compatibility.
    If there are issues, use MPEG Streamclip and re-wrap them as QuickTime.
    Russ

  • Neo2: Which bios should I use? And what's the deal with SATA?

    I'm fixing to put together a new box using the MSI K8N Neo2 Platinum.  In taking various preparatory steps, I happened upon this forum.  I'm very alarmed by the apparent fact that there is not a single good bios out there yet.  1.2 reportedly sucks.  1.3 reportedly sucks.  Especially if one wishes to overclock, as I do.  I intend to go to 250+ FSB, 1:1.  People are reporting things like not even being able to increase the voltage adequately!
    Well, it seems a safe bet that some people have been able to overclock all they want, or else the Neo2 would not have achieved its generally accepted status as the best possible socket 939 motherboard, particularly for overclocking.  That means there's a bios out there that I'd be well-advised in using.  If it's not 1.2 or 1.3, what is it?  And what's this 1.52beta I've heard about which supposedly fixes everything?  Is that for a competely different board?
    Now, as for SATA.  I am going to be using a single SATA drive.  I've read something about how "3 & 4 are locked, but 1 & 2 aren't".  I am not able to translate that sentence into anything especially meaningful to me, but the gist seems to be that using a drive on the 1&2 port will, because of an Nforce3 bug, prevent one from overclocking past 230 FSB.  So, does this mean I will need to use the other SATA port for my single drive if I want to go past 230?  Or is this old news, long since fixed somehow?
    Thanks in advance!

    Unfortunately I am not sure about the bios version.
    But with SATA and overclocking the speed is not locked on ports 1 & 2 but 3 & 4 are locked. Basically when you overclock your system and your drive may run into problems. As far as I am aware from what I have read in the forum there is no limit on OC'ing with the drive in 1 or 2 but you can get sporadic issues
    The general guideline is when overclocking use SATA ports 3 & 4.
    Hope this made a little more sense (it was difficult for me to put into words)

  • What frame rate timeline should I use for 1080p 60fps premiere pro

    When using 1080p 60fps clips what sequence should I use when creating a timeline that would work the best for slow mo application?
    I read that you should use a 24 fps timeline but i'm not sure?
    Also I have a few 720 @ 120 fps, should I create a separate sequence for that and what kind of timeline should I use since cs5 only has 1080 @ 60fps option?

    24 is a good frame rate for most animations but some people like 30 and for the max stress on user systems and animation smoothness, use 60.

  • What component Should I use?, Jpanel doesn't work

    Hi
    I need a program that has a window that can go fullscreen and windowed (I did that with a Jframe in fullscreen mode with a jpnale and a 800x600 Jpanel and destroying them with an object that maneges them), I did it with a jframe that contained a Jpanel, I used a Jpanel to avoid the flickering on the screen but I also need to change the font type and the font size, but the setFont on the Jpanel doesn't change the font (as I have realized and also read here [http://forum.java.sun.com/thread.jspa?forumID=257&threadID=150588] ), so I'm lost, I might have to redo the whole thing, but I just wanted to know what component should I use for a window that is going to have custom graphics and need diffrent fonts and diffrent font sizes and work in fullscreen without flickering
    Thank you for your attention, I would aprecciate any help given

    for example:
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.awt.Font;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.RenderingHints;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JSlider;
    import javax.swing.event.ChangeEvent;
    import javax.swing.event.ChangeListener;
    public class JPanelFont extends JPanel
      private Font font = getFont();
      private String myString = "Fubars Rule";
      private int fontSize = font.getSize();
      private JSlider slider = new JSlider(0, 100, fontSize);
      public JPanelFont()
        setPreferredSize(new Dimension(620, 250));
        setLayout(new BorderLayout());
        JPanel inputPanel = createInputPanel();
        add(inputPanel, BorderLayout.SOUTH);
      private JPanel createInputPanel()
        JPanel ip = new JPanel();
        slider.setMajorTickSpacing(20);
        slider.setMinorTickSpacing(5);
        slider.setPaintTicks(true);
        slider.setPaintLabels(true);
        ip.add(slider);
        slider.addChangeListener(new ChangeListener()
          public void stateChanged(ChangeEvent evt)
            fontSize = (Integer)slider.getValue();
            repaint();
        return ip;
      @Override
      protected void paintComponent(Graphics g)
        Graphics2D g2 = (Graphics2D)g;
        Object originalHint = g2.getRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING);
        g2.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
        super.paintComponent(g2);
        myPaint(g2);
        g2.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, originalHint);
      private void myPaint(Graphics2D g2)
        font = font.deriveFont(Font.BOLD, fontSize);
        g2.setFont(font);
        g2.drawString(myString, 20, 100);
      private static void createAndShowUI()
        JFrame frame = new JFrame("Dynamic JPanel Font");
        frame.getContentPane().add(new JPanelFont());
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
      public static void main(String[] args)
        java.awt.EventQueue.invokeLater(new Runnable()
          public void run()
            createAndShowUI();
    }Edited by: Encephalopathic on May 21, 2008 9:18 PM

  • What format should I use for new  FCP slide show to DVD project?

    I want to edit a slide show movie. I have all of the high resolution images. I plan on authoring the project to DVD 16:9 anamorphic with DVD SP. Later I would like to author to 1920 x 1080 HD on Blu-Ray. ( I can't afford Adobe BR authoring software at this time, I want to start with the DVD) I am looking for advice. I want the quality of DVD and future Blu-Ray to be best possible quality. I'm thinking there are two options I might use:
    1. Edit the FCP project in HD 1920 x 1080. Use Compressor to convert the sequence to 16:9 anamorphic for DVD SP input. I am thinking I will have the HD sequence ready for the Blu Ray in the future. I like this approach. Is the conversion possible with compressor? What exact format and frame rate should I use for the FCP project?
    2. Edit the FCP project in 16:9 Anamorphic. Compress for DVD SP input. I am not fond of this option. I don't look forward to making rectangular pixel images in Photoshop for one. That will be a lot of work for this project. I won't have an HD sequence ready for Blu Ray in future, I will have to start a new project from scratch to make the HD version.
    Thanks in advance for any advice!

    Edit in a 1920x1080/30p Pro Res sequence settings.
    Export that to a self contained movie current settings, and use which ever SD DVD preset to encode for use in DVD SP.
    The self contained movie can eventually be used in Adobe Encore for blu ray authoring.
    But having "high resolution" images/photos means nothing in video.
    1 dpi is sufficient at 1920x1080 unless you plan to pan and zoom, in which case double the pixel size, not the dpi.
    300 dpi produces no better image than 1 dpi.

  • What setting should I use for YouTube?

    I have a cannon HD camcorder and I shoot with Auto AVCHD SP wide. There are a half dozen options when I put my video on YouTube. I don't know what option I chose when I published my first two videos but the sharpness is better than that of my recent video. On my recent video I used Flash Video for YouTube (Wide Screen) Frame Rate 30. The other option, which perhaps I should have used, is High Definition Video for You Tube - 1920 by 1080 - Frame Rate 29.97. Many of the other options are for PAL which of course I do not use.
    Please give me you thoughts on this because I intend to publish more videos on YouTube.

    Even YouTube themselves has advice:
    "Frame rates
    Frame rates should match the source material. For example, content shot in 24fps should be encoded and uploaded at 24fps. Content recorded at 30fps should be uploaded at 30fps. Content shot in 720p60, should be uploaded at 720p60. Content at 1080i 60, should be deinterlaced, going from 60 interlaced fields per second to 30 progressive frames per second before uploading."
    "High quality uploads for creators with enterprise quality internet connections
    Type
    Video Bitrate
    Mono Audio Bitrate
    Stereo Audio Bitrate
    5.1 Audio Bitrate
    1080p
    50,000 kbps
    128 kbps
    384 kbps
    512 kbps
    720p
    30,000 kbps
    128 kbps
    384 kbps
    512 kbps
    480p
    15,000 kbps
    128 kbps
    384 kbps
    512 kbps
    360p
    5,000 kbps
    128 kbps
    384 kbps
    512 kbps
    Resolutions
    YouTube uses 16:9 aspect ratio players. If you are uploading a non-16:9 file, it will be processed and displayed correctly as well, with pillar boxes (black bars on the left and right) or letter boxes (black bars at the top and bottom) provided by the player. If you want to fit the player perfectly, encode at these resolutions:
    1080p: 1920x1080
    720p: 1280x720
    480p: 854x480
    360p: 640x360
    240p: 426x240
    The YouTube player automatically adds black bars so that videos are displayed correctly without cropping or stretching, no matter the size of the video or the player.
    For example, the player will automatically add pillarboxing to 4:3 videos in the new 16:9 widescreen player size. If the player is re-sized (i.e. when embedded on another website), the same process takes place so that 16:9 videos are letterboxed when the player is sized to 4:3. Similarly, anamorphic videos will be automatically letterboxed when shown in either 16:9 or 4:3 sized players. The player can only do this if the native aspect ratio of the video is maintained.

  • What type of hard disk should I use if I want to use it on mac and windows?

    Hey Forum,
    I am using windows xp on my macbook (snow leopard). I came across some dealers who say that there are hard disks for mac only and for both mac and windows. So, I wanted to buy a hard disk so that I can use it both on mac and windows xp, so what type of hard disk should I use? Must I partition into 2?
    or are there any harddisk in the market which is compatible for both mac and windows xp without screwing up the format(NTFS/Mac OS X Journaled)? Pls look into this matter and help me with it.
    All of your replies and suggestions is much appreciated.
    Thank you.
    Ala.

    Run, don't walk, from that dealer! and never look back
    Once in a very long while Apple will have customized firmware on drives, and it is possible to find SCSI/SAS or drives that are destined to be used with high end storage controllers.
    But that is the exception that makes the rule.
    SATA is SATA. Though.... there are now SATA III drives that don't work in XP, or that need a jumper, and Seagate and some drives have managed to deliver firmware that has caused trouble... and Apple has had to issue firmware updates to help compatibility....

  • I feel I must move beyond iMovie, what program should I use ?

    I have been happily using iMovie and iDVD from versions 1 through 6.  iMovie 08 was so bad that Apple made iMovie 06 available as a free download for buyers of iMovie 08. The newer iMovies were better, but they seemed “dumbed down” (even for me).  Now, I am shocked and horrified to learn that the latest iMovie does not even set chapter markers!
    So, I have continued to use iMovie 06 and iDVD 08 (they seem to work fine under OS 10.9.4).   iMovie 06 is now 8 years old!  I feel compelled to move forward. A lot of my work is DV.    In the past, most of my source material came out of S-Video.   I used a Canopus ADVC300 analog-to-digital converter that gave good results.   Going forward, I will have more video utilizing Component Video, or HDMI.
    I am looking into 2 possibilities,  Adobe Premiere elements 12, or.........Final Cut Pro X.
    The final result of my work is almost always a DVD.   It is hard for me to move from iMovie and iDVD.  I never read the manuals for either program, yet,  I was able to produce DVDs with nice menus and overall quality close to Hollywood.
    It looks like Final Cut Pro X 'can' make a DVD directly without other software.  However, from what I have seen on YouTube the result is primitive compared to what iDVD was doing 10 years ago.
    Adobe Premiere elements 12 can make nice DVDs and Blu-ray's directly.  I have no problem with using a separate program to make DVDs but I haven't got a clue how to do that with Final Cut Pro X.   I suppose I can still use iDVD, but now I'm back to using discontinued software.
    I do not need any of the high-powered affects capability that Final Cut Pro X  possesses.  My “movie-making” is mostly confined to simple editing (the old iMovie 06 did all I needed).
    Frankly, one motivation for choosing Final Cut Pro X, is the excellent, compassionate and understanding support that the kind people on this very forum provide.  So, what program should I use?

    Ziatron wrote:
    ...  I am shocked and horrified to learn that the latest iMovie does not even set chapter markers!
    .. I am looking into 2 possibilities,  Adobe Premiere elements 12, or.........Final Cut Pro X.
    The final result of my work is almost always a DVD. ...
    ... I do not need any of the high-powered affects capability that Final Cut Pro X  possesses.  My “movie-making” is mostly confined to simple editing (the old iMovie 06 did all I needed).
    to turn perspective for a second by 180°:
    Why do you want to switch to a new editor anyhow?
    • iM-a never did discs - that was iDVDs job = no big change in your workflow
    • iDVD is still working, and aside obsolete, complex and $$$$ DVDSP (part of obsolete FC/p) or Encore (part of Adobes CC rent package) your only option left to create disks on MacOS is indeed iDVD (...ok, there's Toast and Burn and some weird 'shareware'-stuff...)..
    • iMovie-b supports the new HDef formats (AVCHD) - you mentioned converters and DVDs = no HDef in use, in your habitat, correct?
    • if you don't need FCPX' bling-bling (I can't imagine that ) - why not using FCPX-lite = iMovie? 15$ ...
    • chapters could be done in iDVD - just to mention that ............
    • AP and FCPX are following very different concepts in usage - my personal preference is 200% on FCPX, … I was one of the loudest nay-sayers, when iM08 araised, meanwhile, FCPX is my dream!! AP (tested it) is way too complex, crowded, 'optionalized' and did I mention 'complex' for me. A bit like Windows vs. MacOS: 'everything goes' (incl. getting lost) vs. 'convenience' (incl. restrictions) ... After 2y of practice, I'm editing my weekly hobby-projects with 6-cam-Multicam, incl. tons of  custom graphics, slow-mow, effects (soccer games) in less than 2h ... awesome!
    summary:
    • why switching?
    • use iMovie10 + iDVD
    • Premiere (or Premiere Elements!) and FCPX are both avail as fee trial ... test  it - but you need iDVD anyhow
    • 'disks'  is a dwindling niché, for years!- consider to switch to 'other' distribution options
    ... what are 'chapters' anyhow??... (kid din'!)

  • What query should I use to find all versions of Office 2013 64-bit installed on client computers?

    What query should I use to find all versions of Office 2013 64-bit installed on client computers? Could someone create a custom query? I need all of the client computers names and which ones have any Office 64-bit components. Thank you so much! I really
    appreciate it!

    Hi,
    You could edit the following query to meet your requirement.
    SELECT     dbo.v_R_System.Name0, dbo.v_GS_OPERATING_SYSTEM.Caption0 AS [Operating System],
                          dbo.v_GS_OPERATING_SYSTEM.CSDVersion0 AS [OS Service Pack], arp.DisplayName0,
                          CASE WHEN arp.version0 LIKE '11.0.6361.0' THEN 'SP1' WHEN arp.version0 LIKE '11.0.7969.0' THEN 'SP2' WHEN arp.version0 LIKE '11.0.8173.0'
    THEN 'SP3' WHEN
                           arp.version0 LIKE '12.0.6215.1000' THEN 'SP1' WHEN arp.version0 LIKE '12.0.6425.1000' THEN 'SP2' WHEN arp.version0 LIKE '14.0.6029.1000'
    THEN 'SP1' ELSE '' END
                           AS 'Service Pack', arp.Version0
    FROM         dbo.v_Add_Remove_Programs AS arp INNER JOIN
                          dbo.v_R_System ON arp.ResourceID = dbo.v_R_System.ResourceID INNER JOIN
                          dbo.v_RA_System_SMSInstalledSites AS ASSG ON dbo.v_R_System.ResourceID = ASSG.ResourceID INNER JOIN
                          dbo.v_GS_OPERATING_SYSTEM ON dbo.v_R_System.ResourceID = dbo.v_GS_OPERATING_SYSTEM.ResourceID
    WHERE     (arp.DisplayName0 LIKE '%Microsoft Office%edition%' OR
                          arp.DisplayName0 LIKE '%Microsoft Office Standard 2007%' OR
                          arp.DisplayName0 LIKE '%Microsoft Office Enterprise 2007%' OR
                          arp.DisplayName0 LIKE '%Microsoft Office Professional%2007%' OR
                          arp.DisplayName0 LIKE '%Microsoft Office Standard 2010%' OR
                          arp.DisplayName0 LIKE '%Microsoft Office Enterprise 2010%' OR
                          arp.DisplayName0 LIKE '%Microsoft Office Professional%2010%' OR
                          arp.DisplayName0 LIKE 'Microsoft Office 2000%' OR
                          arp.DisplayName0 LIKE 'Microsoft Office XP%') AND (arp.DisplayName0 NOT LIKE '%update%') AND
                          (arp.DisplayName0 NOT LIKE '%Microsoft Office XP Web Components') AND (dbo.v_R_System.Operating_System_Name_and0 NOT LIKE '%server%')
    AND
                          (arp.InstallDate0 NOT LIKE 'NULL')
    ORDER BY dbo.v_R_System.Name0, arp.DisplayName0, arp.Version0
    Full details:http://social.technet.microsoft.com/Forums/systemcenter/en-US/7baeb348-fb63-4115-8d76-2c884d18f708/sql-query-to-check-ms-office-service-pack-level?forum=configmgrreporting
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • After upgrading from Mavericks to Yosemite I can no longer find in Mail the icon (looks like the Add To Contacts icon without the   mark) I used to press in order to obtain an e-mail address from my contact list. What procedure should I use now in or

    After yesterday upgrading from Mavericks to Yosemite I can no longer find in Mail the icon (looks like the Add To Contacts icon without the + mark) I used to press in order to obtain an e-mail address from my contact list. What procedure should I use now in order to quickly add an address to an e-mail that I wish to send?
    Bob

    On the right of the To: field you will see a circled plus sign:
    Click it.

  • I cant download from appstore. I made my apple Id but when I try to download from app store it says this id has not yet been used in itunes. what should I do?

    I cant download from appstore. I made my apple Id but when I try to download from app store it says this id has not yet been used in itunes. what should I do?

    Follow the on screen instructions to set up an iTunes account using your Apple ID.

  • What external Hard drive should I use for Final Cut Pro?

    Hi:
    I have a Mac Pro and I'm planning to work with HD. What external hard drive should I use?
    PD: I have a NVIDIA on a PCI Express graphic slot.
    Thanks,
    Cabezon

    You'll need to be much more specific; there are 20 or 60 different kinds of high definition. Some require nothing, some require superfast RAID, some require specialized hardware support.
    bogiesan

  • What type of hard drive replacement should i use to replace the hard drive in my first generation mac min 2005 model a 1103?

    what type of hard drive replacement should I use to replace the hard drive on my first generation mac mini model a 1103?   G4 1.25 mhz 40 gb hd 1 gb. mem.

    You'll need a 2.5" parallel ATA interface hard drive. Most are 5400RPM, forget 7200RPM drives and slower 4200rpm drives.  You don't want a serial ATA (SATA) drive, as that has a different connector and won't work.
    One source I've used for drives is Newegg, and their parallel ATA hard drives are at http://www.newegg.com/Product/ProductList.aspx?Submit=ENE&N=100007605%2060000344 2&IsNodeId=1&name=IDE%20Ultra%20ATA100%20%2f%20ATA-6 .  Newegg also has many user comments about the drives. Other sources are OWC at http://eshop.macsales.com/shop/hard-drives/2.5-Notebook/ (Click on ATA on the left) . Look for at least a 3 year warranty. 

  • What version of Flash Player should I use with my Power PC based Mac?

    I did the following (see below from a Recent Forum) - and even got a sucessful INSTALLED, but when I go to YouTube....I can not get anything and I am asked to update FLASH.....thoughts?
    What version of Flash Player should I use with my Power PC based Mac?
    Please follow these instructions for installing the most recent version of Flash Player that supports PowerPC based Macs
    1. Follow the instructions for uninstalling Flash Player on the Mac: Uninstall Flash Player
    2. Download and extract the Flash Player 10.1.102.64 zip file
    3. Navigate into the folder "/Flash Player 10.1.102.64/10_1r102_64/"
    4. Mount the file "flashplayer10_1r102_64_ub_mac.dmg" by double clicking
    5. Install using the normal procedure

    I was finally able to successfully installed FP on my Mac OS 10.5.8 using the last trick shown below by Chris (Adobe Flash Player.pkg file). This, only after several (at least 10) attempts, and only after restarting my computer after downloading the install file. Thanks for the helpful post.

Maybe you are looking for

  • My up and down arrows as well as page up and page down no longer work properly only when using firefox. Page up and down function more like the "home" and "end" keys as do the arrow keys.

    Honestly I'm not sure if these began just after I updated FF to the current release, but it's been happening for at least 2 weeks. The arrow keys and page up and page down keys all work as if I'm pressing the 'home' and 'end' keys on my keyboard. Thi

  • No messages in MONI

    I am facing a strange problem. I am using 7.1 Sent a message from Soap to Proxy. The message processed succesfully ( I can see that on ERP) the scenario is ASYNC. However i checked LOGGING_SYNC and other param in SXMB_ ADM, seems to be ok. I do not s

  • Touch screen ghost clicks

    Hello, I have a Touchsmart notebook that seems to have  a mind of it own. Occasionally, once in 2 weeks almost, the touch screen picks a spot ( the same spot ) and keeps selecting it every 5-10 seconds. When this happen you cannot navigate or even sh

  • Graph wizard

    I am doing a purchase database , i have two tables (purchasing ORDERS & purchasing QUOTATIONS). each one of them has a column about date (ORDATE & QUDATE) i want to do a graph comparing between dates and prices .. i make a group in the X-axis combine

  • How to read property files?

    I have a problem with a small web-app that I try to use on a SAP J2EE server. The app was developed and tested on JBoss and there it was no problem to read the properties file with the following code: URL resource = getClass().getResource("/WEB-INF/m