Can I add a form to my website page?

I'd like to add the contact us form to my personal website. Is there a way to generate the html code to add to Dreamweaver? And can I add some type of security feature?

Yes, you can embed a form into your web site and this document talks about how to embed a form: Why is my embedded form not displaying correctly?.

Similar Messages

  • How can I embed a form on my website and set up a submit button so that when people fill out and click Submit, the filled form will be emailed to me as an attached pdf file?

    How can I embed a form on my website and set up a submit button so that when people fill out and click Submit, the filled form will be emailed to me as an attached pdf file?
    Thank you!

    Hi;
    That is not a workflow that is supported by the Adobe forms solutions at this time.
    Thanks,
    Josh

  • Can I add Live Chat funtionality to iWeb page?

    Hey Guys
    I've done a bit of googling and everything I find doesn't work anymore; can I add a live chat funtionality to my iWeb website?
    Something like this http://www.designimportance.com/ in teh top right corner.
    Thanks
    Angela

    See this topic :
    https://discussions.apple.com/message/19253704

  • How can i add filename on a document in pages 5.1 ?

    I am allways using a template to make documents, that I save under different names. How can I add the (changed) filename in the footer of a saved document ?
    It is important to me to print the filename on document, to find and edit it on my mac later.
    In MS Word it is easy to automaticaly add filenames, path, author and other filedata to the document. I can't find how to do that automatically in Pages templates.
    I saw earlyer answers to this question on this community, but they don't work as I expect, or only on earlier versions of pages.....  I trust there is an easy way to do this.
    Can someone help me please ?

    That function, present in "Pages 09" (i.e. Pages 4.3) , was not included in Pages 5.0-5.1.  (Nor were nearly 100 other such features, from mail merge and bookmarks to non-contiguous text selection, 2-up page viewing and the ability to set alternating left/right margins, headers & footers.Version 5.1 is also notably buggy. One work around, or partial work around, is to click the file name at the top of the window document. You can then select the filename, copy it  and paste it whereever you like. As far as I can see, however, there is no way to include the path: all you get is the filename and extension.

  • How can I add javascript text fields to Acrobat pages from Applescript please?

    I have a real need to add text fields to Acrobat document pages from Applescript. I can't access the Headers and Footers from Applescript in Acrobat XI. I can set watermarks using the following script, but cannot for the life of me work out how to add text fields. Any advice please?
    Regards
    set TempAttachmentName to "(20140717121212Z)"
    set PreserveFileName to "This is a test"
    set bypass to false
    tell application "Adobe Acrobat Pro"
      activate
      set CountOfPages to count of pages
      repeat with PageCounter from 1 to CountOfPages
      tell application "System Events" to tell process "AdobeAcrobat"
      try
      click menu item "Page..." of menu 1 of menu item "Go To" of menu 1 of menu bar item "View" of menu bar 1
      tell current application to delay 0.1
      keystroke PageCounter as text
      tell current application to delay 0.1
      keystroke return
      if not bypass then
      my ADDHeaderFooter(TempAttachmentName, PreserveFileName & " " & CountOfPages, PageCounter)
      end if
      end try
      end tell
      end repeat
    end tell
    on ADDHeaderFooter(The_String1, The_String2, currentPage)
      tell application "Adobe Acrobat Pro"
      activate
      set myDocument to document 1
      tell myDocument
      tell page currentPage
      set cbox to crop box
      set item 2 of cbox to (item 2 of cbox) + 44
      set item 4 of cbox to (item 4 of cbox) - 44
      set media box to cbox
      set crop box to cbox
      set theResult1 to my Add_WaterMarkText(The_String1, "IDAutomationHC39M", 12, 1, 1, 1, 0, 3, 10, 3, 0)
      do script theResult1
      set theResult2 to my Add_WaterMarkText(The_String2, "Times", 16, 1, 1, 1, 0, 4, 10, -6, 0)
      do script theResult2
      end tell
      end tell
      end tell
    end ADDHeaderFooter
    on Add_WaterMarkText(cText, cFont, nFontSize, nS, nE, nTA, nHA, nVA, nHV, nVV, nR)
      set Params to "cText: '" & cText & "'," & return
      set Params to Params & "cFont: '" & cFont & "'," & return
      set Params to Params & "nFontSize: '" & nFontSize & "'," & return
      if class of nS is integer then set Params to Params & "nStart: " & (nS - 1) & "," & return
      if class of nE is integer then set Params to Params & "nEnd: " & (nE - 1) & "," & return
      -- 0 = left, 1 = centre, 2 = right
      if class of nHA is integer then set Params to Params & "nHorizAlign: " & nHA & "," & return
      -- 3 = top, 4 = bottom
      if class of nVA is integer then set Params to Params & "nVertAlign: " & nVA & "," & return
      -- offset in points
      if class of nHV is integer then set Params to Params & "nHorizValue: " & nHV & "," & return
      -- offset in points
      if class of nVV is integer then set Params to Params & "nVertValue: " & nVV & "," & return
      if class of nR is integer then set Params to Params & "nRotation: " & nR & "," & return
      set javascript to "this.addWatermarkFromText({" & Params & "});"
      return javascript
    end Add_WaterMarkText

    G'day
    Unfortunately I don't have the API. My Adobe Reader installation updating to version XI failed, and subsequent attempts to fall back on the X version are blocked by the partial install of XI. Damn Adobe stuff.
    Could someone please post the relevant part of the API to give me some pointers, please.
    I ha mucked about with some information I found on the Web, and come up with the following, which fails because I can't work out how to address the current document with the variable myDoc.
    Regards, Brian
    set Params to Params & "var myDoc = this;" & return
    set TempAttachmentName to "(20140717121212Z)"
    set PreserveFileName to "This is a test"
    set bypass to false
    tell application "Adobe Acrobat Pro"
      activate
      set CountOfPages to count of pages
      repeat with PageCounter from 1 to 1 # CountOfPages
      tell application "System Events" to tell process "AdobeAcrobat"
      try
      click menu item "Page..." of menu 1 of menu item "Go To" of menu 1 of menu bar item "View" of menu bar 1
      tell current application to delay 0.1
      keystroke PageCounter as text
      tell current application to delay 0.1
      keystroke return
      if not bypass then
      my ADDHeaderFooter(TempAttachmentName, PreserveFileName & " " & CountOfPages, PageCounter)
      end if
      end try
      end tell
      end repeat
    end tell
    on ADDHeaderFooter(The_String1, The_String2, currentPage)
      tell application "Adobe Acrobat Pro"
      activate
      set myDoc to document 1
      tell myDoc
      tell page currentPage
      set cbox to crop box
      set item 2 of cbox to (item 2 of cbox) + 44
      set item 4 of cbox to (item 4 of cbox) - 44
      set media box to cbox
      set crop box to cbox
      set theResult1 to my Add_WaterMarkText(The_String1, "IDAutomationHC39M", 12, 1, 1, 1, 0, 3, 10, 3, 0, myDoc)
      do script theResult1
      set theResult2 to my Add_WaterMarkText(The_String2, "Times", 16, 1, 1, 1, 0, 4, 10, -6, 0, myDoc)
      do script theResult2
      end tell
      end tell
      end tell
    end ADDHeaderFooter
    on Add_WaterMarkText(cText, cFont, nFontSize, nS, nE, nTA, nHA, nVA, nHV, nVV, nR, myDoc2)
      #set Params to "var myDoc = app.newDoc();" & return
      set Params to ""
      set Params to Params & "var myDoc = this;" & return
      set Params to Params & "var inch = 72;" & return
      set Params to Params & "var Bbox = this.getPageBox(" & "\"Crop\"" & ");" & return
      set Params to Params & "var f = myDoc.addField(" & "\"Text1\"" & ", " & "\"" & cText & "\"" & ", 0, [72, Bbox[1]-inch, Bbox[2]-2*inch, Bbox[1]-2*inch ] );" & return
      set Params to Params & "f.strokecolor = color.black;" & return
      set Params to Params & "f.richText = true;" & return
      set javascript to Params
      return javascript
    end Add_WaterMarkText

  • Can I combine 2 forms with different master pages?

    I have two forms that need to be in one PDF together, but have different master pages. The forms are flowed, so the master pages are necessary to keeping the header and footer content in place. Is there any way to combine two forms?

    Hi guys, I figured out a kinda fudged answer.
    You can make as many master pages as you need, the problem is getting them to appear on the correct pages. I couldn't get the flowing first page to be as long as it needs, then start using the second master page for the next section. If anyone knows how to do that, I still need to know.
    How I fudged this was I put the entire form on the master page in a table to position it correctly and keep it flowed. Then I set the master page to a minimum occurance of 1. - There you go. Not the right answer, but it works.

  • How can i add sound controls on my website?

    I have a song playing on my website and i want to pause the
    song with a button then play the song from where it was paused from
    with another button. How can i solve this problem im having?

    check the sound class in the flash help files. in particular,
    you'll use the position property and the stop() and start() methods
    of the sound class.

  • Can I add a comments to my iWeb page

    I have a website that I would like to invite visitors to sign a guest book or add comments ... can that be done?

    See this page for adding comments...
    http://www.iwebformusicians.com/iWeb/Comments-Password-Protect.html
    ... and this one for form services which willl also provide a guestbook...
    http://www.iwebformusicians.com/Website-Email-Marketing/Form-Service.html

  • How to add multiple forms in single adf page?

    Hi All,
    I have some requirement.I have created one adf page from this page i need to insert(create a user )into back-end.
    here my requirement i want to add more users at sometime.like in that page its need to create one button kind of this to add more user creation form in single page after filling all the details for each user finally i need to submit all user(heterogeneous) way of submitting forms. is it possible in adf? if possible how to go with this requirement.
    please guide me .and show me some solutions.
    Regards
    Siva

    HI Jobinesh ,
    I created same reign thing in .jsff page with the same functionality(instead of main.jsf i created test.jsff) . when i deployed in to OIM custom page i am getting below exception.
    /main.jsff
    Error:encountered deferred syntax #{in  template  text  intended  as a literal ,escape  it or set  directive  differedsyntaxAllowedasLiteral 
    ADF_FACES-60097 and ADF_FACES-60096
    can you please take a lookinto the error where i cam doing mistake.
    regards
    Siva                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Can you add a Print Button to one page?

    I have a form with 15 or so pages of information.  I do not want the submitter to get a printout of the entire thing.  However, they are given a chance to pay via PayPal or pay by mailing a check.
    If they chose PayPal, no big deal.  If they chose to mail a check - I would like them to either GET a print out of the last page, or have a button they press to get a print out of the last page.  This page would be required to be sent along with the check so I can tie it back to the record.
    Is this possible?
    Thank you!
    Jeanine

    What is it you need to accomplish?
    If you just want work to be saved as people move through the form, you could prompt them to hit the save link, if you've enabled it. This would allow them to come back to the form and finish it later, and preserves all selections and filled-in information. When they then hit the "Submit" button at the end of the form, all of their info deposits into the data set.
    If you don't mind the data being split across multiple data sets, you could create multiple small single-page forms, and when the respondent hits the "Submit" button, they could be automatically redirected to the next  form. You would set this up in the form Options tab and select the Redirect URL panel.
    Otherwise, follow Josh's suggestion for a PDF.
    I hope that helps,
    Brian

  • How can I add a "search" field for web pages content-not blogs or podcasts?

    This seems to be such a basic function, I can't believe I'm having so much trouble. I don't have a blog or a podcast on my new website that I'm in the process of designing. So how do I allow people who'll visit my site to search there for specified content? The only instructions I find are for the RSS in inspector for blogs or podcasts. All I want is for people to be able to search my site/web pages (that have no blogs or podcasts on them). This must be a common request... or am I crazy? How do I do that?
    Thanks for your help.

    I think I've answered my own question after a few hours of searching:
    http://services.google.com/searchcode2.html?accept=on
    Thank you Google.

  • Can I add an internal link in a Pages 5.5.2 Document

    In previous versions of Pages I could add a link from a word in my document to, say, a topic in a different place in the document. Either I've forgotten how to do it or the ability has gone away. Can someone help?

    Thank you for the (sad) information. When I try to open my document that I had already updated in v5 with v4.3 it says it can't be opened because the required index.xml file is missing. Any idea how to get around that?

  • Can't add rows to a table in Pages 5.1

    I started my table in Numbers but it defaults to huge margins top bottom and on the sides so I can't get much on one page and it won't let you change the margins - one of the huge advantages Excel has. So I copied and pasted part of my table into Pages which does allow you to change the page margins. When I tried to paste or add more rows into that Pages document, the cells below row 120 remain black. Whats keeping me from seeing or working with more rows at the bottom of this table in Pages?

    Hank,
    The previous version of Numbers had the ability to manage margins, and to view the margins while editing the content. This version, 2.3, is still available.
    Whenever you paste a table into Pages, or when you insert one, you must be aware of what part of the document it is in. If it Moves with Text (formerly known as Inline), it will flow from page to page. If the table Stays on Page (formerly known as Floating), the table will run off the bottom of the page and the lower portion will not be displayed.
    Jerry

  • How can I add logo (image) to headers in Pages 5.1

    Hi,
    How I can add a logo (image) to header in documents in Pages 5.1
    It seems every time I try to copy and paste any image it doesnt go into header (not appearing on other pages in the document)
    Thanks

    That was removed from Pages 5 by Apple along with over 90 other features.
    Pages '09 should still be in your Applications/iWork folder.
    Peter

  • How can I add web counter into my Muse page?

    Normally with Dreamweaver I added the right code right before the end of body tag. How can I solve this problem with Muse?

    Hi,
    If you have the code for the web counter, you can add it to your Muse site using Insert HTML feature.
    Regards,
    Aish

Maybe you are looking for