How to insert HTML5 rollover buttons into Dreamweaver

i publish an HTML5 canvas out of Flash contaning a rollover button and now I want to insert it into my site in Dreamweaver, how do i do it?

Hi Ercolubus,
Are  you looking for something like this?
http://forums.adobe.com/thread/1295208
Thanks,
Preran

Similar Messages

  • Fireworks buttons into Dreamweaver

    Hello,
    I have made some simple buttons in Fireworks that I would like to export and place in Dreamweaver. The buttons are symbols with an up and over state, but additionally I have added pop-up menus to each button. I know how to export and place buttons into Dreamweaver without the pop-up menus... just insert them as rollover images. But after adding the pop-up menus and exporting the button as images, html, and slices I don't know what to do to get them to work in Dreamweaver. Just inserting the html doesn't work... the buttons just appear as a stagnant image. There appears to be some JavaScript that was generated when I made the buttons... do I have to do something with that?
    If anyone can think of a way to get my buttons to work interactively in Dreamweaver I would really appreciate it! Thank you so much!

    Here's the reason why Alec suggested (and I totally agree) that the FWs built dropdown menus shouldn't be used.
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    http://apptools.com/rants/jsmenu.php
    http://apptools.com/rants/menus.php
    There is a new alternative which are the Spry Menus, but even those aren't something that I'd choose for a navbar for a site of mine.
    Here's a tutorial that helps you build a complete CSS driven dropdown menu - user friendly, easily to build and definitely SEO friendly.
    http://htmldog.com/articles/suckerfish/dropdowns/
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://twitter.com/nadiap
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://csstemplates.com.au/

  • Can any one out there tell me how to insert a zoom tool into my slide show in dreamweaver CS5.5

    Hi there
    Can any one out there tell me how to insert a zoom tool into my slide show in dreamweaver CS5.5
    My slide show consists of lots of thumb nails of paintings under a large painting.
    When the small painting thumb nail is clicked the large painting appears.
    I would like to be able to enlarge all areas of the large painting when a zoom tool is placed over areas of the large painting.
    Really appreciate any one help.

    Here's the Dreamweaver forum...
    http://forums.adobe.com/community/dreamweaver/dreamweaver_general

  • How do you insert a submit button into your form?

    How do you insert a submit button into a form?

    Hi,
    The submit button is included automatically. If you are distributing your form as HTML you can use the Test tab to preview your form. If you are distributing your form as PDF, you would need to generate the PDF to see the submit button.
    Regards,
    Brian

  • How to insert a image file into oracle database

    hi all
    can anyone guide me how to insert a image file into oracle database now
    i have created table using
    create table imagestore(image blob);
    but when inserting i totally lost don't know what to do how to write query to insert image file

    Hi I don't have time to explain really, I did have to do this a while ago though so I will post a code snippet. This is using the commons file upload framework.
    Firstly you need a multi part form data (if you are using a web page). If you are not using a web page ignore this bit.
    out.println("<form name=\"imgFrm\" method=\"post\" enctype=\"multipart/form-data\" action=\"FileUploadServlet?thisPageAction=reloaded\" onSubmit=\"return submitForm();\"><input type=\"FILE\" name=\"imgSource\" size='60' class='smalltext' onKeyPress='return stopUserInput();' onKeyUp='stopUserInput();' onKeyDown='stopUserInput();' onMouseDown='noMouseDown(event);'>");
    out.println("   <input type='submit' name='submit' value='Submit' class='smalltext'>");
    out.println("</form>"); Import this once you have the jar file:
    import org.apache.commons.fileupload.*;Now a method I wrote to upload the file. I am not saying that this is correct, or its the best way to do this. I am just saying it works for me.
    private boolean uploadFile(HttpServletRequest request, HttpSession session) throws Exception {
            boolean result = true;
            String fileName = null;
            byte fileData[] = null;
            String fileUploadError = null;
            String imageType = "";
            String error = "";
            DiskFileUpload fb = new DiskFileUpload();
            List fileItems = fb.parseRequest(request);
            Iterator it = fileItems.iterator();
            while(it.hasNext()){
                FileItem fileItem = (FileItem)it.next();
                if (!fileItem.isFormField()) {
                    fileName = fileItem.getName();
                    fileData = fileItem.get();
                    // Get the imageType from the filename extension
                    if (fileName != null) {
                        int dotPos = fileName.indexOf('.');
                        if (dotPos >= 0 && dotPos != fileName.length()-1) {
                            imageType = fileName.substring(dotPos+1).toLowerCase();
                            if (imageType.equals("jpg")) {
                                imageType = "jpeg";
            String filePath = request.getParameter("FILE_PATH");
            session.setAttribute("filePath", filePath);
            session.setAttribute("fileData", fileData);
            session.setAttribute("fileName", fileName);
            session.setAttribute("imageType", imageType);
            return result;  
         } And now finally the method to actually write the file to the database:
    private int writeImageFile(byte[] fileData, String fileName, String imageType, String mode, Integer signatureIDIn, HttpServletRequest request) throws Exception {
            //If the previous code found a file that can be uploaded then
            //save it into the database via a pstmt
            String sql = "";
            UtilDBquery udbq = getUser(request).connectToDatabase();
            Connection con = null;
            int signatureID = 0;
            PreparedStatement pstmt = null;
            try {
                udbq.setUsePreparedStatements(true);
                con = udbq.getPooledConnection();
                con.setAutoCommit(false);
                if((!mode.equals("U")) || (mode.equals("U") && signatureIDIn == 0)) {
                    sql = "SELECT SEQ_SIGNATURE_ID.nextval FROM DUAL";
                    pstmt = con.prepareStatement(sql);
                    ResultSet rs = pstmt.executeQuery();
                    while(rs.next()) {
                       signatureID = rs.getInt(1);
                    if (fileName != null && imageType != null) {
                        sql = "INSERT INTO T_SIGNATURE (SIGNATURE_ID, SIGNATURE) values (?,?)";
                        InputStream is2 = new ByteArrayInputStream(fileData);
                        pstmt = con.prepareStatement(sql);
                        pstmt.setInt(1, signatureID);
                        pstmt.setBinaryStream(2, is2, (int)(fileData.length));
                        pstmt.executeUpdate();
                        pstmt.close();
                        con.commit();
                        con = null;
                if(mode.equals("U") && signatureIDIn != 0) {
                    signatureID = signatureIDIn.intValue();
                    if (fileName != null && imageType != null) {
                        sql = "UPDATE T_SIGNATURE SET SIGNATURE = ? WHERE SIGNATURE_ID = ?";
                        InputStream is2 = new ByteArrayInputStream(fileData);
                        pstmt = con.prepareStatement(sql);
                        pstmt.setBinaryStream(1, is2, (int)(fileData.length));
                        pstmt.setInt(2, signatureID);
                        pstmt.executeUpdate();
                        pstmt.close();
                        con.commit();
                        con = null;
            } catch (Exception e) {
                con = null;
                throw new Exception(e.toString());
            return signatureID;
       }

  • How to insert a tumbler blog into muse web site?

    Hey I was wondering if you know how to insert a tumbler blog into adobe muse? I have a tumbler account but would like to use it in adobe muse. how can I add it to my blog page in muse for desktop?

    Goto your Tumblr account and then view it when you're logged out ... the URL link should look something like this?:
    http://my-tumblr-blog.tumblr.com
    Now copy & paste that URL link and insert it into this code snippet:
    <iframe src="http://my-tumblr-blog.tumblr.com" onLoad="calcHeight();" scrolling="YES" frameborder="0" width="660" height="950" name="resize" id="resize"></iframe>
    Now copy and paste this edited snippet into the Muse page where you want your Blog ... set the correct width and height in the code (see above) to fit your page ...
    Cutomize it:
    I would suggest customizing your Blog with the built-in customize HTML section to tweak the embedded Blog page ... i.e. turn off some of the Tumblr sections like Header, Description, etc, if you don't want them ...
    Better still go over to this Tumblr Theme site and create a nice custom theme where you can do it all yourself ...
    Then after that still use the snippet code above once you have copied & pasted the new customised Tumblr HTML into you Tumblr Blog:
    http://www.totallylayouts.com/tumblr-generator/
    The art is to streamline your Blog as much as possible so you get the most screen estate shown in Muse, because as an inserted iFrame widget you do lose a bit ...
    cheers,
    Gem

  • How to Insert a Landscape Page Into a Portrait Document?

    How to Insert a Landscape Page Into a Portrait Document?
    i use pages 5.2
    thanks

    You can't.  But you could add a text box and rotate it (select the box, click arrange, rotate).

  • How to insert a gif file into a table?

    Hi,
    I need to insert a gif file into a table. Can anyone tell me where I can find the information on how to create this kind of table, how to insert a gif file into a table and how to select?
    Thanks,
    Helen

    Hi Helen,
    You could read about that in the documentation which is available online.
    For a starter: BLOB. And I bet there are many examples to be found on the web.
    Good luck. :)
    Regards,
    Guido

  • How to insert one table data into multiple tables by using procedure?

    How to insert one table data into multiple tables by using procedure?

    Below is the simple procedure. Try the below
    CREATE OR REPLACE PROCEDURE test_proc
    AS
    BEGIN
    INSERT ALL
      INTO emp_test1
      INTO emp_test2
      SELECT * FROM emp;
    END;
    If you want more examples you can refer below link
    multi-table inserts in oracle 9i
    Message was edited by: 000000

  • Could someone help me out how to insert a Node properly into a DOM?

    I am trying to insert a Node built from a String to a DOM.
    Here is how I created the Node
                   Detail = "<Detail><Msg>Detail Message</Msg></Detail>";
                   prolog = "<?xml version="1.0" encoding="UTF-8"?>";
                   Node DetailNode = null;
                   Document DetailDoc = null;
                   if( Detail != null ){
                        Detail = prolog + BiometricDetail;
                        DetailDoc = xp.XML2DOM( BiometricDetail ); // transform a XML String into a DOM.
                        DetailNode = BiometricDetailDoc.getDocumentElement();                    
    Here is how I created the DOM
                   javax.xml.parsers.DocumentBuilderFactory factory = javax.xml.parsers.DocumentBuilderFactory.newInstance();
                   javax.xml.parsers.DocumentBuilder builder = factory.newDocumentBuilder();
                   Document document = builder.newDocument();
                   Element beeE = document.createElement("BeeSets");
                   Element grpE = document.createElement("Group");          
                   bioE.appendChild( grpE );
                   // the document looks like "<BeeSets><Group></Group><BeeSets>";
                   // After inserting the Node DetailNode, I want it to look like
                   // "<BeeSets><Group><Detail><Msg>Detail Message</Msg></Detail></Group><BeeSets>";
    Now when I tried to insert the node DetailNode to the DOM document, I tried
    1) document.importNode( DetailNode, true );               
    No exception was thrown. But when I transformed the DOM document back to a String, I could not see the information from the newly imported Node DetailNode.
    When I tried
              grpE.insertBefore( BiometricDetailNode, dataE );
    I got the following exception.
         org.w3c.dom.DOMException: WRONG_DOCUMENT_ERR: A node is used in a different document than the one that created it.
         at org.apache.xerces.dom.ParentNode.internalInsertBefore(Unknown Source)
         at org.apache.xerces.dom.ParentNode.insertBefore(Unknown Source)
         at com.jadcs.bioidentity.role.base.RP.getNodes(RP.java:497)
    2) document.adoptNode( DetailNode );
    I got the following exception.
         java.lang.ClassCastException: org.apache.xerces.dom.DocumentImpl
         at org.apache.xerces.dom.DeferredTextImpl.synchronizeData(Unknown Source)
         at org.apache.xerces.dom.NodeImpl.setOwnerDocument(Unknown Source)
         at org.apache.xerces.dom.ParentNode.setOwnerDocument(Unknown Source)
         at org.apache.xerces.dom.ElementImpl.setOwnerDocument(Unknown Source)
         at org.apache.xerces.dom.ParentNode.setOwnerDocument(Unknown Source)
         at org.apache.xerces.dom.ElementImpl.setOwnerDocument(Unknown Source)
         at org.apache.xerces.dom.CoreDocumentImpl.adoptNode(Unknown Source)
         at com.jadcs.bioidentity.role.base.RP.getNodes(RP.java:509)
    3) detailStr = "<Detail><Msg>Detail Message</Msg></Detail>";
    Element detailE = document.createElement("Detail");
    detailE.setTextContent( detailStr );
    grpE.appendChild( detailE );
    This way gives result like "<BeeSets><Group><Detail><Detail><Flash>On</Flash></Detail></Detail></Group><BeeSets>";
    The content is messed up.
    Could someone help me out at how to insert a Node properly into a DOM? Thank you very much.

    Said another way, importNode actually only makes and returns a copy of the node you gave it (it will be a deep copy only if you pased true as the second parameter), but where the new dom you called import on is owner.
    So what you need to do is more like this:
    Node tempNode = domYouAreAddingTheNodeTo.importNode(node2copy,true); //true if you want a deep copy
    domYouAreAddingTheNodeTo.appendNode(tempNode);You can also traverse to any point in the DOM and insert the node there with the same method, but you always have to import first so that the DOM has a copy of the node that it owns.

  • How do I look up how to put Cafe townsend  tutorial into dreamweaver

    How do I ask how to put Cafe Townsend Tutorial into dreamweaver. I have a mac. The tutorial notes say follow this line
    (Mac OS X) Macintosh HD/Users/your_user_name/Documents/local_site. I don't understand what each section means. If someone called explain it that would be great as I ended up with an empty folder in dreamweaver with the name 'Cafe Townsend' on it. Thank you

    Right.  It's an empty local site folder until you put something into it. 
    Go to step 2.  Download and unzip the Check_Magazine.Zip files
    http://download.macromedia.com/pub/developer/check_magazine.zip
    Go to step 3. Copy the check_magazine folder into your local_sites folder (Cafe Townsend).
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.com/blogspot.com

  • How is it possible to insert the .html button into the header?

    Hello everybody!
    My site is [link removed - promotion is not permitted here] But I have one more site as well. I'm a newbie still in this matter and learn everything by myself, so, I need some help, guys. I would like to create the same header like in my site and insert the html button in the picture. Should I use Photoshop for this purpose or another tools? And it would be nice also to make links in the infographics as well. How should I be?
    Thanks. Appreciate your help

    Just use JavaScript!
    http://www.crowderassoc.com/javascript/backbutton.html

  • How to upload a custom button on Dreamweaver cs5?

    Hello,
         I would like to add a custom "View Cart" button onto my website. I went onto a random website where I was able to create a custom image for my view cart button. The button I got was called button.php. I checked the document properties and collected some information on it. The type of file is: Adobe Fireworks PNG File (.png). It is said to open with: Adobe Fireworks CS5. I made a copy of this document and put it in Dreamweaver by opening a blank page and pasting the image in there. I saved the page and published it.
    Then, I went onto paypal and put the link to this published page where it was asked for. I received a code that I pasted into dreamweaver in the section I wanted the "View Cart" button to appear. When I save and publish this page, the button never appears. Paypal's name is what appears and when you click on it, it goes to the cart.
    So the problem appears to be with how I have uploaded and saved this image/button on Dreamweaver. Can anyone please tell me the proper way to upload it so that it appears on my website?
    Thanks in advance.
    Regards,
    Laila

    Thank you very much for all of your suggestions and help.
    I have found myself in another problem. Initially, I inserted the paypal "View Cart" button and code in my header. However, since there is a logo present there, and the code was lengthy, the PayPal button appeared right below my header and right above my navigation menu. I deleted it because of the awkward location it ended up being placed in. However, for some reason, it did not completely go away. If you visit www.Ziyah.com, you can see the "button" (which really did not even appear to begin with) in its place it says "Paypal the safer easier way to pay online!"
    I have made several attempts and checked the code so many times. However, I do not see that original code I pasted from PayPal anywhere inside of my Dreamweaver code, so I do not know how to delete that "button" or tag line and get rid of it. I do not know where it is hiding, but it has to be somewhere in my code. I fear having to delete and re-do the navigation menu just to get rid of that.
    Is there any way I can get rid of it? Again, here is the Paypal View Cart Code that I originally pasted into Dreamwaver. Please take a look and see if you can see parts of this code somewhere in my page code, because I cannot find it and hence, have no way to get rid of it.
    <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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 qh40MeATrkM9LOZDBqckYvJzFU4x69IYYHN8ckA==-----END PKCS7-----
    ">
    <input type="image" src="http://www.ziyah.com/shoppingbag.html" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>
    And the following is my code for the page.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Ziyah.com</title>
    <!-- TemplateEndEditable -->
    <link href="../twoColLiqLtHdr.css" rel="stylesheet" type="text/css" /><!--[if lte IE 7]>
    <style>
    .content { margin-right: -1px; } /* this 1px negative margin can be placed on any of the columns in this layout with the same corrective effect. */
    ul.nav a { zoom: 1; }  /* the zoom property gives IE the hasLayout trigger it needs to correct extra whiltespace between the links */
    </style>
    <![endif]-->
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <style type="text/css">
    .ziyahED {
        display: block;
        width: 150px;
        margin-right: auto;
        margin-left: auto;
    h1 {
        font-size: 50%;
    h2 {
        font-size: 50%;
    h3 {
        font-size: 50%;
    h4 {
        font-size: 50%;
    h5 {
        font-size: 50%;
    h6 {
        font-size: 50%;
    .ed {
        display: block;
        width: 240px;
        margin-right: auto;
        margin-left: auto;
    </style>
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <link href="../SpryAssets/SpryMenuBarHorizontal_copy.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body,td,th {width: 1200px; /**width in px, % or ems**/
        color: #FFC;
        margin:0 auto; /**centers on screen**/
    .BORDER {
        display: block;
        width: 1000px;
        margin-right: auto;
        margin-left: auto;
    .footermenu {
        text-align: center;
    .footermenu {
        font-size: 36px;
    .footermenu {
        font-size: 24px;
    .footermenu {
        font-size: 18px;
        font-weight: 300;
        color: #FCF;
        word-spacing: 40px;
        text-indent: 40;
        font-family: "Monotype Corsiva";
    .footermenu {
        word-spacing: 10px;
        font-weight: 400;
        color: #FCF;
    .container .content .footermenu a {
        color: #FCF;
        text-align: center;
    .footermenu a hover {
        color: #FCF;
    .footermenu a .footermenu {
    .footermenu a .footermenu {
        text-align: right;
    .footermenu a .footermenu {
        text-align: right;
    .left {
        text-align: left;
    .menufontsize {
        font-size: 16px;
    .fontsizemenu {
        font-size: 16px;
    </style>
    </head>
    <body>
    <div class="container">
      <div class="header">
        <a href="../index.html"><img src="../images/A_Ziyah.jpg" alt="Ziyah Logo" width="115" height="115" align="top" /></a>
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a class="MenuBarItemSubmenu" href="../classiccollection.html">Classic Collection</a>
            <ul>
              <li><a href="../classiccollection.html">Classic Collection 1</a></li>
              <li><a href="../classiccollectionpg2.html">Classic Collection 2</a></li>
              <li><a href="../classiccollectionpg3.html">Classic Collection 3</a></li>
              <li><a href="../classiccollectionpg4.html">Classic Collection 4</a></li>
    </ul>
          </li>
          <li><a href="../peaceblossom.html" class="MenuBarItemSubmenu">Peace Blossom</a>
            <ul>
              <li><a href="../peaceblossom.html">Peace Blossom 1</a></li>
              <li><a href="../peaceblossompg2.html">Peace Blossom 2</a></li>
              <li><a href="../peaceblossompg3.html">Peace Blossom 3</a></li>
    </ul>
          </li>
          <li><a href="../colorsoflove.html" class="menufontsize"> <span class="MenuBarItemHover">Colors of Love</span></a></li>
          <li><a href="../fruitgarden.html" class="MenuBarItemSubmenu">Fruit Garden </a>
            <ul>
              <li><a href="../fruitgarden.html">Fruit Garden 1</a></li>
              <li><a href="../fruitgardenpg2.html">Fruit Garden 2</a></li>
            </ul>
          </li>
          <li><a href="#" class="MenuBarItemSubmenu MenuBarItemSubmenu">An Elegant Gift</a>
            <ul>
              <li><a href="../topgifts.html">Top Gifts 1</a></li>
              <li><a href="../topgifts2.html">Top Gifts 2</a></li>
              <li><a href="../topgifts3.html">Top Gifts 3</a></li>
              <li><a href="../giftcard.html">Gift Card</a></li>
            </ul>
          </li>
        </ul>
      <img src="../images/BORDER.gif" width="959" height="100" alt="Ziyah" /></div>
      <div class="content"><!-- TemplateBeginEditable name="Page Content" -->
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p align="center"> </p>
        <p align="center"> </p>
        <p align="center"> </p>
        <p align="center"> </p>
        <p align="center"> </p>
        <p align="center"> </p>
        <p align="center"> </p>
        <p align="center"> </p>
        <p align="center"> </p>
        <p align="center"> </p>
        <p align="center"> </p>
        <p align="center"> </p>
        <p align="center"> </p>
        <p align="center"><span class="footermenu"><img src="../images/space_long.gif" width="110" height="19" alt="space" /></span></p>
        <p align="center"> </p>
      <!-- TemplateEndEditable -->
        <p align="right" class="footermenu"><span class="footermenu"><img src="../images/#0.gif" width="20" height="25" /></span><a href="../index.html"><img src="../images/BORDER_bottom.gif" width="946" height="53" alt="Ziyah" /></a><a href="../index.html"><img src="../images/B_menu_1.gif" width="150" height="30" alt="Ziyah.com Home" /></a><a href="../aboutziyah.html"><img src="../images/B_menu_2.gif" alt="About Ziyah" width="140" height="30" /></a><a href="../customerservice.html"><img src="../images/B_menu_3.gif" width="145" height="30" alt="Customer Service" /></a><a href="../privacypolicy.html"><img src="../images/B_menu_4.gif" width="120" height="30" alt="Privacy Policy" /></a>   
        <p align="right" class="footermenu">
          </p>
    </div>
      <div class="footer"></div>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>
    Thanks in advance.
    Regards,
    Laila

  • How to insert data from site into DB?

    Hi
    Does anyone know how to insert data into a database from a
    website?
    I have created a Registration form for users to register to
    my web site. With this I would like the data they have entered to
    be stored in a MySQL database. I have created the a form and used
    the record insertion form wizard.
    When they have registered, I need to be able to check their
    username every time they log in.
    If anyone could help, it would be greatly appreciated,
    thanks Lou.

    LoobieLouLou wrote:
    > When I inserted a form, I enetered a name and the method
    was POST, but it also needed an action.
    > How do I write in java script that it needs to be
    inserted into the database?
    You can't do it with JavaScript. You need to use a
    server-side language
    like ASP, ASP.NET, ColdFusion, or PHP. Dreamweaver automates
    a lot of
    the process for you, but you need to choose your server model
    first.
    It sounds as though you are completely new to this. First ask
    your
    hosting company whether it supports a server-side language,
    and if so,
    which one. Then open Dreamweaver help (F1) and read the
    section titled
    "Preparing to Build Dynamic Sites".
    Working with server-side languages and databases isn't
    difficult, but
    it's not something you can pick up in five minutes or be
    shown how to do
    in a couple of forum posts.
    If you can't make up your mind which server-side language to
    use,
    ASP.NET is the most difficult of the four I mentioned. ASP is
    popular,
    but is no longer actively developed, so will eventually die
    out
    (although it will take many years to do so). ColdFusion and
    PHP are
    relatively easy to learn. I prefer PHP, but all of them do
    basically the
    same thing. However, you must choose one; they cannot be
    mixed.
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • How to insert a JPG file into a Table from a Form?

    I create a Schema and a Table as follows:
    SQL> create user myphoto identified by myphoto;
    User created.
    SQL> grant connect,resource to myphoto;
    Grant succeeded.
    SQL> create table myphoto.photo_table
    2 (photo_id varchar2(10) primary key,
    3 photo_content blob);
    Table created.
    I would like to build an Oracle Form with a Text Item to enter the full path and filename to be uploaded and inserted into the photo_table; and a Push Button to insert the jpg file into the photo_table.
    Can any one give me details on how this could be done?

    Hi,
    have a look at webutil on otn.oracle.com/products/forms ---> Webutil
    Webutil has the capability to load files into the database.
    Frank

Maybe you are looking for