Multiple page solution

I'm trying to built web page at Dreamweaver 8 for
commercially selling product, but it's going to be more than 100
pages, since each single image I click, it have to creat new page
for large view. Is there any solution to reduce pages. I'm not
quite familiar with dynamic dreamweaver either.

Consider using templates to avoid duplicating unnecessary
repeating page content, such as navigation, banners and footers.
You do not need to make separate pages for different images.
If you are building an image gallery of commercial products you can
use several different methods to show larger images (from
thumbnails) on the same page.
A bigger problem is your unfamiliarity with dynamic
applications, which is a major hurdle if you want to create a
secure, robust e-commerce site.
I recommend a lot of research into e-commerce, database and
secure application and data handling before you start to build your
web site. Also, 100 pages is not a great deal of pages for even a
modest e-commerce Web site.
regards
Nick Barling
www.barkingweb.com

Similar Messages

  • Solution for scanning multiple pages from inside the form6i/10g

    Hi All,
    I need to scan multiple pages from Oracle forms (6i/10g) using a scanner which is scanning multiple pages per minute. Can any one post a solution for me.
    Hafeez

    here are the two ways I use to scan images.
    1) if the image is a single TIF image then d2kwutil can upload the image into a BLOB field on the database (but it is limited to only SINGLE-page TIFs).
    2) if the image is a single or multi-page PDF, then your forms client must copy the image to a filesystem location known by the database (where the filesystem location is a directory on the database), and then the database can import the image into a BLOB field within the database.
    either solutions work pretty fast for me (<10 seconds per image)
    Chris

  • Checkbox in Tabular Form (Solution to span multiple pages)

    Hi,
    We had a case where a large report needed to have check boxes. These check boxes would populate a list of id's which we then processed for a specific task. By default APEX doesn't support this.
    After spending some time on this, I thought I'd post my solution to help any others who experience the same problems. For this example we will use P10
    1. Create a new "normal" report.
    SELECT e.*, APEX_ITEM.CHECKBOX(1,e.EMPNO,'onClick="updateList(this);"',:P10_LIST, ',') AS Cancel,
    FROM emp e
    2. Create a hidden item called P10_LIST
    3. Add an HTML region to the page whose template is "No Template" (do this so it doesn't show up. Call the region "JavaScript". Set its sequence to 1
    4. Add the following in the JavaScript region:
    <script src="http://SERVER_NAME/String.js" type="text/javascript"></script>
    <script src="http://SERVER_NAME/Ajax.js" type="text/javascript"></script>
    <script type="text/javascript">
    function updateList(pObject){
    vItem = 'P10_LIST';
    myAjax = new Ajax();
    vList = myAjax.getItemValue(vItem);
    //Determine to remove or add from list
    if (pObject.checked) {
    //Add item
    vList = vList.listAppend(pObject.value);
    else{
    //Remove from list
    vList = vList.listRemoveItem(pObject.value);
    }//if
    //Set the session value
    myAjax.setItemValue(vItem,vList);
    //Set the HTML value
    document.getElementById(vItem).value = vList;
    </script>
    This script:
    - Loads the List from the session
    - Modifies the list
    - Stores it in the session
    5. The JavaScript region references 2 files, which you'll need to add to your server. They are as follows:
    Ajax.js
    function Ajax(){
    // TODO: Enter proper names etc.
    this.appProcessNameNull = 'AJAX_null';
    this.appProcessNameReturnItem = 'AJAX_ReturnItem';
    this.tempItem = 'P0_AJAX_TEMP';
    * TODO: Document
    * Sets Item in session
    Ajax.prototype.setItemValue = function(pItem,pValue,pAppProcess){
    if (pAppProcess == null)
    pAppProcess = this.appProcessNameNull;
    var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=' + pAppProcess,0);
    get.add(pItem,pValue);
    gReturn = get.get();
    * TODO: Document
    * @param pItem Name of item to get
    * @param pTempItem Name of temp item
    * @param pAppProcess Application Process to call which will return item
    * @return session value
    Ajax.prototype.getItemValue = function(pItem,pTempItem,pAppProcess){
    if (pTempItem == null)
    pTempItem = this.tempItem;
    if (pAppProcess == null)
    pAppProcess = this.appProcessNameReturnItem;
    var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=' + pAppProcess,0);
    get.add(pTempItem,pItem);
    gReturn = get.get();
    return gReturn;
    String.js
    // From http://www.somacon.com/p355.php
    String.prototype.trim = function() {
         return this.replace(/^\s+|\s+$/g,"");
    // From http://www.somacon.com/p355.php
    String.prototype.ltrim = function() {
         return this.replace(/^\s+/,"");
    // From http://www.somacon.com/p355.php
    String.prototype.rtrim = function() {
         return this.replace(/\s+$/,"");
    * Appends value to list
    * @param pValue Value to add to list
    * @param pDelimeter Defaults to comman
    String.prototype.listAppend = function(pValue, pDelimeter){
    if (pDelimeter == null)
    pDelimeter = ',';
    vStr = this;
    if (vStr.length == 0)
    vStr = pValue;
    else
    vStr = vStr + pDelimeter + pValue;
    return vStr;
    * Removes a value from list
    * @param pValue Value to remove from list
    * @param pDelimeter Defaults to comman
    String.prototype.listRemoveItem = function(pValue, pDelimeter){
    if (pDelimeter == null)
    pDelimeter = ',';
    vStr = this;
    vStr = pDelimeter + vStr + pDelimeter;
    // Remove value
    vStr = vStr.replace(pDelimeter + pValue + pDelimeter, pDelimeter);
    //Remove prefix and suffix items
    if (vStr.length > 0 & vStr.charAt(0) == pDelimeter){
    vStr = vStr.substring(1);
    if (vStr.length > 0 & vStr.charAt(vStr.length-1) == pDelimeter){
    vStr = vStr.substring(0,vStr.length - 1);
    return vStr;
    6. On Page 0 Create a hidden Item called: P0_AJAX_TEMP
    (Note: this is can be used for all your AJAX calls)
    7. Create an Application Process called: "AJAX_null". Process Text: null;
    8. Create an Application Process called: "AJAX_ReturnItem". Process Text:
    begin
    htp.prn(v(v('P0_AJAX_TEMP')));
    end;
    If you look at the Ajax.js you'll notice points 6,7, and 8 are all customizable etc... I just put it in so you can test right away.
    Now the user can select items on multiple pages (if pagination applies). Once they hit a submit button you can use P10_LIST to process your values.
    Hope this helps.
    Martin

    Hi Martin,
    I was trying to use your funda in my App. But i dont know why it is not doing anything.
    Also i'm facing a very small but severe problem with one of my report. I am using checkbox. So that user will be able to select all those records he/she wants. but the problem is that when i'm selecting few records with the help of the check boxes, selections are there. When moving to other page and coming back to that page, selections are gone. I think selections should not go like this. Otherwise the user will get confused.
    Can you tell me how can retain the check box selections??
    Thanks
    Sudipta

  • I am trying to scan multiple pages from my scanner using a Mac and don't know how to

    Hi there,
    I am trying to scan multiple pages using HP Deskjet 3070A (Print Scan Copy) and it is all wireless using a Mac OSX 10.6 Snow Leopard and it won't let me. And I am trying to send this document via email.
    Can you offer advice as to how I can do this.
    Much appreciated.
    This question was solved.
    View Solution.

    Hi,
    Please refer manual for the printer and page 26 from link below.
    Although I am an HP employee, I am speaking for myself and not for HP.
    --Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

  • How do I scan multiple pages into one pdf document on a HP Envy 4501 Printer

    My HP Envy 4501 Printer won't let me scan multiple pages into one pdf document.
    I went to "Advanced Settings", clicked on "file" and made sure that the check box next to "Create a separate file for each scanner page" was unchecked.
    When I clicked the Save button it showed the page that I scanned and showed 1/1.  On the right side it had options for changing the brightness and Contrast, Rotate and Crop and "Back", "Save" and "Done" buttons, but nothing about scanning another page.
    Not to mention HP's Customer Support is useless!
    I'd appreciate any help I can get with this problem.
    Thanks,
    Mark

    Hi BH,
    I see your diagram.  I just scanned something.  The screen that I'm looking at right now shows the preview page and the scroll box to the left of that just like in your diagram.  The screen does not show the + button nor does it show the red x button under the scroll box as in your diagram.  I can't see the plus sign because it is not there.
    I tried re-installing the software and drivers as you suggested but that did not have any affect.
    Thank you for trying to help me with this problem but it hasn't worked, therefore I can't mark the reply "Accept as Solution".
    I've noticed that on HP's support forum web page there is only 1 solved request for assistance.  That doesn't give me much confidence in HP.
    Please reply back to this post to let me know if there is anything else that I can try or if you know someone else at HP that can help.
    If I don't here back from you, I'm returning this HP Envy 4501 Printer to get my money back to use it to buy a printer from one of HP's competitors.
    Thanks,
    Mark  

  • Scanning multiple pages into one document with an automatic document feeder

    when using automatic document feeder to scan in multiple pages - using the Image Capture app, this process does not work for more than 2 pages. However works perfectly in PC environment.
    Using a MacBook Pro with 10.8.4 and a Lexmark Interpret 405S All In One Scanner.
    Is there any other all in one device that can perform this function in a Mac environment?
    Please advise.

    Hi @FentyFly ,
    I see by your post that you would like to know how to scan multiple pages into one file. I would like to help you out today.
    From the HP Scan Software, click on the link for Advanced Settings, then uncheck Create a separate file for each scanned page.
    Here is a URL for how to scan and change the settings. Just select your operating system.
    Scan.
    What operating system are you using? How to Find the Windows Edition and Version on Your Computer.
    If you need further assistance, just let me know.
    Have a great day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Scanning Multiple Pages HP 8500A

    Hi,
    I want to scan multiple pages into one pdf document.  When I hit scan on the printer, it will scan and then send to my computer.  It won't give me the option to add another page to the pdf.  
    I need to know how to rectify this as I have many pages for one pdf! 
    Thank you,
    I don't use an app on my computer.  I have to manually scan the doucments.

    Hi there again,
    You should be able to load your multiple page document in the top ADF and select scan to computer. The multiple pages should scan to your computer and save as one file if you have selected the option in the printer software on your computer to scan multiple pages to one file.
    The scanning command on the printer works together with the printer software on your computer. Also, you need to have the Full Feature Driver installed on your PC.
    I hope that helps.
    Regards,
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Scanning multiple pages into PDF

    I am trying to scan multiple pages into one PDF. I read the help document - which states that to add pages, one clicks on the "+" button on the left. However, my software does not show the "+" button. I have the latest version of the software. What's up with that?
    This question was solved.
    View Solution.

    Hi,
    Sounds like the software is not fully installed. My suggestion: re-install Full Feature Software and Drivers for your printer.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Scanning multiple pages in one document

     I am trying to scan multiple pages in one document.  I am using a HP Envy 4501 All-in-one and running Windows 8.1.  I used to be able to do this at one point but for some reason, lately I am not able to.  I have read other posts that spoke of a "+" sign on the left side of the screen, but it is not there for me.  Also, I cannot just save the page and scan the next without having to save them under different file names.  Please advise.
    This question was solved.
    View Solution.

    Hi,
    From the HP Software click on Scan a Document or Photo and ensure the Sow Scan Preview is checked.
    Reduce the Scan Resolution into 300 or a lower resolution and press on Scan, then the add button should appear again.
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Scanning multiple pages in one file - Deskjet 1510

    How to scan multiple pages and put them all in one pdf file?
    Currently, system is letting me scan one page and makes it one separate file, whereas I need to put them all in one single PDF file. Please assist.
    This question was solved.
    View Solution.

    Hi,
    Please try
    Double click printer icon on desktop,
    Select Scan a Document or Photo,
    Put the first page on the glass (face down),
    Check options (size, dpi ...), and select Scan document to file,
    Click Scan - machine will scan the first page
    Remove the first page on the glass, put the second page,
    Click + (plus sign) It sits on the left hand side of a red x
    Machine will scan the second page, put 3rd page on the glass and click + again ..... to the end then click Save
    Click Done after Save
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Scanning multiple pages with preview and brother MFC-7440n

    Hi,
    because of some problems with my old scanner after i installed snow leopard, i bought a new compatible one. It's a brother MFC-7440n with apple build-in drivers.
    When i start scanning to preview with more than one page, there will be a pdf document for every page. It doesn't matter if i choose "create just one document".
    First i wondered because in leopard preview multiple pages are displayed like in snow leopard. But this is wrong. There is one pdf file for every page.
    How can i change that issue? When i scan more than one page, i wan't one pdf document with multiple pages, not a pdf per page.
    Thanks a lot.
    Dominik

    Hi Dominik,
    What about Brother's scanner software? Do they have a scan program you can use to create multiple page documents? I have a Canon, and its software did that. The only other way is how I explained in my previous post. I have no issue using Preview for the simple document scanning I do. But if you have more needs, perhaps the Brother scan program should be installed.
    Brother has issued a scanner driver update on 9/10....
    http://welcome.solutions.brother.com/bsc/public/us/us/en/dlf/downloadindex.html?reg=us&c=us&lang=en&prod=mfc7440nall&type2=1&os=all&flang=all&dlid=dlf003973
    Also several other updates:
    http://welcome.solutions.brother.com/bsc/public/us/us/en/dlf/downloadtop.html?reg=us&c=us&lang=en&prod=mfc7440nall

  • Scanning Multiple Pages using HP ENVY 4500

    Hi, I have a macbook pro running OSX 10.9.4, and cannot see how I can scan multiple pages.  I have tried using Image Capture and the Scan function under system preferences.  I place the first page on the glass and change format to pdf and check the box that says 'combine into single document'. It usually 'automatically' scans the page at this point, and if I click Overview Scan, it scans again.  If I try to click on "Scan' it says it is done scanning the selected area.  I have no idea what to do after this, or where to find the document (its not showing up in the selected 'Scan To' location.
    Many thanks.

    Hi therelkd123, welcome to the forums
    I understand you are looking to scan a multiple page document with your HP Envy 4500. See the link below for the instructions! Click the link, select "Scan with HP Software" and "How to scan a multi-page original into a single file".
    How to Scan: OS X v10.9
    Have a great weekend
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Scanning multiple pages into one document

    I have an HP8600 running off a MacBook Pro  - I used to be able to scan multiple pages (both from the auto feed and manually) save them as one document.  Lately though it is saving them each as its own document.  This is happening with both MacBooks connected to my printer.  Thanks

    Hi DCompass,
    Thanks again for trying that for me. Definitely odd that you are not seeing the drop-down. If you don't see Contents, do you see .PDF? Once it is in a .PDF format you should be able to combine into a single-file. From what I have tried.
    If not, then I would recommend to do the following one more time:
    Uninstall the software. Uninstalling the Printer Software.
    Re-install the software using the download from this website. HP Officejet Pro 8600 series Full Feature Software and Drivers.
    Make sure your Mac is up-to-date. About the OS X Mavericks v10.9.5 Update.
    Hope this clears things up for you, please let me know if you have any further issues!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • Scanning multiple pages - pop-up for "Next Page" appears

    I'm running Acrobat Profession version 7 on OS X 10.5.
    My scanner is an Epson Perfection 3170 with an automatic document
    feeder.
    The settings for scanning seem to have been goofed up -- any
    assistance in resetting them would be appreciated.
    Previously, I could drop a handful of pages into the feeder, choose
    FILE => CREATE PDF => FROM SCANNER in Acrobat, set the scanner to ADF
    (automatic document feeder), and it would create a single PDF from the
    whole stack.
    Now, the first page scans, the second page feeds through without
    scanning, and then I get a pop-up called "Acrobat Scan". It says,
    "Next Page" and "Front of Sheet 2" is selected (no other options) --
    and I can choose DONE or NEXT.
    If I choose NEXT, it scans the next page (and then skips another page).
    When I choose DONE, it goes back to Acrobat and the PDF is created.
    (Obviously, every other page in the document is missing.)
    It never did this before, and it's kind of pointless having an
    automated feeder if I have to stop after every page.
    A few points:
    - reinstalling the Epson software did not help
    - I notice that I get a separate pop-up the first time the scanner dialog opens -- this pop-up allows me to choose a scanner (only one is currently installed). Don't remember getting this before the problem started.
    - I have another program that uses the same scanner -- it continues to scan multiple pages without interruption. Ergo, I assume this is an Acrobat issue.
    Any suggestions on fixing this issue would be appreciated.
    Thanks! -c

    Thanks, Brian!
    I've tried turning the scanner off/on, both after the computer is booted and when it's shut off.
    Between the need to select "Next Paqe" all the time, and the fact that the scanner skips every other page, I'm really annoyed!
    Does anyone have any other suggestions on where I might find a solution? I considered contacting Adobe, but their per-incident support seems kind of expensive.
    Thnx! -c

  • Scanning multiple pages in to a single continuous PDF

    I have recently purchased an HP ENVY 5530 wireless printer for use with my iPad using the HP AIO ('All In One') software app from the i-Store.
    I have a number of paper documents that I wish to scan in to electronic (PDF) format, most of which run in to multiple pages. However, each time I scan a page, the software creates a new PDF file, rather than one continuous electronic copy. I am finding this very frustrating as all I want is one single PDF file containing multiple pages.
    Have read various message boards, forums, FAQs, but can't find any answers so would really appreciate any help anyone can give.
    Thanks!

    Hi Manxie,
    Thank you for the update.
    I wonder if you are choosing to save after each page is scanned? If yes, that would be why each page is being created as a separate file. When you choose the add page icon and then confirm that you want to add a page (see screen shot below) it will return you to the preview/scan screen. I was able to scan 5 pages into one document this morning.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

Maybe you are looking for

  • How can I transfer all my music from 2nd gen iPod Touch to iPhone 5?

    When I connect my iPhone 5 to my MacBook Pro (Model MacBookPro2,2) running OS X 10.7.5 and iTunes 10.7 and try to sync, only my recently purchased music is copied to the iPhone.  Is there a way to directly transfer  ALL my music, currently contained

  • Error in Data Transfer Process (DTP) Urgent!

    Hi, ive encountered an error in uploading data from R3 using DTP in a specific cube and it says "Exceptions in Subset: Load and Generation" and "Dump: ABAP/4 processor: MESSAGE_TYPE_X", how can i fix this problem? is there any problem with the upgrad

  • RE:Reading SOAP Element in java

    Hi All, I am calling one web service in java the output of web service is SOAP Element when i tried to print that it gave the follwing o/p <CheckKeyActivationResult xmlns="http://tempuri.org/"> <xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www

  • Converting iPhoto 6 rolls to iPhoto 7 events

    I'm about to take the plunge and install iPhoto 08. I have hundreds of rolls in my library. Some rolls represent 1 day, some represent many days. All roll titles have been renamed. I'm happy to acquire the new event splitting functionality on new and

  • Opening FCP 6.0.2 projects with 6.0?

    Greetings, I have a client sending me a project created with fcp 6.0.2, and the studio I'm at has 6.0... Will I open it? Hope so, they won't be able to upgrade until the owner returns next month