Can Forms Be Used

New to Apple. I am on IWeb and I am in the process of making a website. Can I put an *order form* on my site? I want to set up a shopping cart. Is that possible with IWeb? Thanks.

iWeb doesn't give you the ability to place forms or shopping carts on your site natively. However, through the use of the Web Widgets in iWeb you can add third party forms with payment capabilities into your pages.
Check out http://www.wufoo.com they have a great service for building forms and simply adding the code to your site. They are free for up to three forms but if you want to add a payment component it goes to their pay service and adds PayPal and Google checkout.
If you want to see a form in action check out my site: http://www.sonsofben.com/Join_SoB.html

Similar Messages

  • Can forms be used with SPML ?

    Hi ,
    IDM Forms end up as HTML Forms on the end-user JSP . Let's say we have the following XPRESS :
    <Field name='username'>
            <Display class='Text'>
              <Property name='title' value='IDMXMessages:LOGIN_FIELD_USERNAME'/>
              <Property name='size' value='20'/>
              <Property name='maxLength' value='32'/>
            </Display>
          </Field>
          <Field name='forgotUsername'>
            <Display class='Link'>
              <Property name='label' value='IDMXMessages:LOGIN_LINK_FORGOT_USERNAME'/>
              <Property name='URL'>
                <concat>
                  <ref>servletContext</ref>
                  <s>/spe/user/ForgotUsername.do?newView=true</s>
                </concat>
              </Property>
              <Property name='noNewRow' value='true'/>
            </Display>
          </Field>
          <Field name='password'>
            <Display class='Text'>
              <Property name='title' value='IDMXMessages:LOGIN_FIELD_PASSWORD'/>
              <Property name='size' value='20'/>
              <Property name='maxLength' value='32'/>
              <Property name='secret' value='true'/>
              <Property name='submitOnEnter' value='Save'/>
            </Display>
          </Field>
          <Field name='forgotPassword'>
            <Display class='Link'>
              <Property name='label' value='IDMXMessages:LOGIN_LINK_FORGOT_PASSWORD'/>
              <Property name='URL'>
                <concat>
                  <ref>servletContext</ref>
                  <s>/spe/user/ForgotPassword.do?newView=true</s>
                </concat>
              </Property>
              <Property name='noNewRow' value='true'/>
            </Display>
          </Field>which displays a username and password field on a custom user page . The question is :
    Can I implement this form in a page stored in another web container on another physical machine using SPML ?
    For example i found an operation which can be called in SPML1.0 :
    SpmlClient client = new SpmlClient();
    client.setUrl("http://traian:8080/idm/servlet/rpcrouter2");
      client.setTrace(true);
    ExtendedRequest req = new ExtendedRequest();
    req.setOperationIdentifier("runForm");
    req.setAttribute("form", "SPML Get Object Names");
    ExtendedResponse res = (ExtendedResponse) client.request(req);
      // Create the extended request
       if (res.getResult() .equals(SpmlResponse.RESULT_SUCCESS))
          System.out.println("Form was successfully contacted :) ");

    Hi ,
    Actually the only information i need is :
    Can I implement this form in a page stored in another web container on another physical machine using SPML ?
    Thanks ,
    Victor

  • CRM 2011: Can you control which form is used based not security roles, but on a field value?

    I see that you can control which form is used based on security roles, but can you control it based on other field values?  I'd like a new record to use a different form until a given status is updated.  I have a status of draft and active. So
    it would be nice if I could use form1 for those in draft, form2 for those that are active.  But I only see where you can control that via the security roles.
    I can code all of this via JavaScript, but having the ability to use two separate forms would be nice.  Is that even possible.
    Best regards,
    Jon Gregory Rothlander

    Hello,
    Recheck following article - http://gonzaloruizcrm.blogspot.com/2014/11/avoiding-form-reload-when-switching-crm.html
    Dynamics CRM MVP/ Technical Evangelist at SlickData LLC
    My blog

  • How can i convert my encrypting file to a applet form to use it in IE?

    Hi, i m a little new in JAVA.
    I searched about encryting methods. And i decide to built a encrypter that reads a string from a textbox and writes the encrypted form to another textbox.. this code is working in eclipse. but i cannot convert this to applet form to use it in internet explorer .. i dont know why this not work. It says : "Applet password notinited" -> How can i solve this problem ???
    Please HELP ME ! Thanks alot..
    package yeni;
    import java.applet.*;
    import java.awt.*;
    import java.lang.*;
    import java.net.*;
    import java.io.*;
    import java.util.*;
    import javax.crypto.*;
    import javax.crypto.spec.*;
    public class password extends java.applet.Applet
         SecretKeySpec keyS;
         SecretKey key;
         SecretKey key_s;
         String encrypted;
         String decrypted;
         KeyGenerator keyGen;
         Mac mac;
         byte[] utf8;
         byte[] digest;
         private Button b_open;
         private Button b_next;
         private TextField t_userID;
         private TextField t_password;
         private TextField re_userID;
         private TextField re_password;
         private Label l_title;
         private String root;
         private int col;
         private String title;
         private String buttontxt;
         private int bgcolor;
         private int fsize;
         private String fface;
         private String errorURL;
         /* Init */
         public void init()
              String att = getParameter("root");
              root = (att == null) ? this.getDocumentBase().toString() : att;
              att = getParameter("textfield");
              col = (att == null) ? 20 : (Integer.valueOf(att).intValue());
              att = getParameter("font_size");
              fsize = (att == null) ? 11 : (Integer.valueOf(att).intValue());
              att = getParameter("font_face");
              fface = (att == null) ? "Arial" : att;
              att = getParameter("color");
              bgcolor = (att == null) ? Color.white.getRGB() : (Integer.parseInt(att, 16));
              att = getParameter("title");
              title = (att == null) ? "" : att;
              att = getParameter("button");
              buttontxt = (att == null) ? "OPEN" : att;
              att = getParameter("wrong");
              errorURL = (att == null) ? "" : att;
              setFont(new Font(fface, Font.PLAIN, fsize));
              setBackground(new Color(bgcolor));
              b_open = new Button(buttontxt);
              b_next = new Button("NEXT");
              t_userID = new TextField(col);
              t_password = new TextField(col);
              re_userID = new TextField(col);
              re_password = new TextField(col);
              l_title = new Label(title);
              t_userID.setBackground(Color.white);
              t_password.setBackground(Color.white);
              t_password.setEchoCharacter('*');
              re_userID.setBackground(Color.YELLOW);
              re_password.setBackground(Color.YELLOW);
    //          re_password.setEchoCharacter('-');
              setLayout(new FlowLayout(FlowLayout.CENTER,3,3));
              if(title.length()>0)
                   add(l_title);
              add(t_userID);
              add(t_password);
              add(b_next);          
              add(b_open);
              add(re_userID);
              add(re_password);
              t_userID.setText("User ID");
              t_password.setText("Password");
              //re_password.hide();
              //re_password.hide();
              show();
         /* Transfer - �ifreleleme */
         void transfer()
              if(t_userID.getText().length()>0)
                   re_userID.setText(t_userID.getText());
              else t_userID.setText("Enter Your USER ID!");
              if(t_password.getText().length()>0)
                   //Calling HMAC Function
                   re_password.setText(HMAC(t_password.getText()));
         /* HMAC Fonksiyonu - �ifreleme */
         public String HMAC(String values){
             String output = "";
             try {
                 //Generate a key for the HMAC-MD5 keyed-hashing algorithm;
                 key =  new SecretKeySpec( "istenen anahtar".getBytes("ASCII"), "HmacMD5");
                 // Create a MAC object using HMAC-MD5 and initialize with key
                 mac = Mac.getInstance("HmacMD5");
                 mac.init(key);
                 // Encode the string into bytes using utf-8 and digest it
                 utf8 = values.getBytes("UTF8");
                 digest = mac.doFinal(utf8);
                 //If desired, convert the digest into a string
                 String digestB64 = new sun.misc.BASE64Encoder().encode(digest);
                 output += digestB64;
             catch(Exception e){}
             return output;
         /* surfto_error Fonksiyonu - Hata durumu */
         void surfto_error()
              if(errorURL.length()>0)
                   try
                        getAppletContext().showDocument(new URL(errorURL),"_self");
                   catch (MalformedURLException e) {}
              else
                   re_password.setText("");
                   showStatus("Invalid password!");
         /* surfto Fonksiyonu - Bilgi Aktar�m� */
         void surfto()
              if(t_password.getText().length()>0)
                   try
                        URL surftoURL = new URL(root+t_password.getText()+".html");
                        InputStream in = surftoURL.openStream();
                        in.close();
                        getAppletContext().showDocument(surftoURL,"_self");
                   catch (MalformedURLException e) { surfto_error(); }
                   catch (SecurityException e) { surfto_error(); }
                   catch (IOException e) { surfto_error(); }
         /* Durum ��leme */
         public boolean handleEvent(Event evt)
              if(evt.id == Event.KEY_PRESS && evt.target == t_password && evt.key==10)
                   surfto();
                   return(true);
              return super.handleEvent(evt);
         /* Eylem ��leme  */
         public boolean action(Event evt, Object arg)
              if (evt.target == b_open)
                   surfto();
                   return true;
              if (evt.target == b_next)
                   transfer();
                   return true;
              return(super.action(evt,arg));
    }

    In method HMAC, you have towards the bottom
    catch(Exception e) {}please change this to
    catch(Exception e)
                e.printStackTrace();
            }Note that using the sun.* classes, including the sun.misc.BASE64Encoder class, requires elevated privileges (see http://forum.java.sun.com/thread.jspa?threadID=483223&messageID=2255882).
    It is not difficult to write your own encoder/decoder class, or borrow one from someone else. Just google on "java base64 encoder".

  • HT5622 I recently purchased a use 2nd generation iPad. I was told the Apple ID is locked. If I re-set the iPad back to factory  defaults and erase all former info on the iPad. can I now use my Apple ID to install Apps and connect to my Apple Computer?

    I recently purchased a used 2nd generation Apple iPad. I was told that the iPad is locked because of Apple ID. I plan on erasing everything on the iPad and setting it back to factory defaults. Can I now use my personal Apple ID via my iMac to start it as it originally came from Apple??

    It is a brick! But I did somehow get into the iPhoto section and was able to find the Former owner that owned the iPad and was able to contact him VIA FaceTime. on my iMac. He was of little help because he was not the original owner, but he bought the iPad as I did from a huge supplier and i was able to contact that supplier who refused to give out any information about the previous owner. I had the iPad hooked up to my somehowiMac via the USB cable and went through the setup procedure to no avail. Then after pressing the Home button several times it somehow went to the iPhotos that were on the iPad? There were 2 pictures of the owners email address. I then copied them to my iMac and used iPhoto app to enlarge the photos. It worked.So there is a way,just takes time to somewhat hack into Find My iPad?Phone.
    Personally, it is not Apple's responsibility to protect customers of their personal DATA. With such a high security application. Then of coarse it is a great idea. Then again it is the responsibility of the former owner to wipe and rest the iPad before reselling it. This being the case like those sold on eBay and elsewhere that are ID Locked should not be allowed to be sold. Personally the ID lock is much like a VIN number of a car. In most states one cannot sell a car without the VIN Numbers. Somewhat the same thing should be true of ID Locks

  • Can a form be used as a webpage?

    Can a form be used as a webpage?

    Hi,
    A form can be used alone by going to its URL directly or you may embed the form in a web page. First part of the article explains how to embed a form into a web page: http://forums.adobe.com/docs/DOC-1991.
    Thanks,
    Wenlan

  • ASP Web Forms Error: Session state can only be used when enableSessionState is set to true

    Hello,
    I am developing a custom application page for a custom Web Forms I am creating, which I plan on using for custom task form into SharePoint 2010 Foundation.
    Currently, I am trying to test it in Debug Mode using Visual Studio 2010 but when I am trying to use Sessions I get the error:
    Session state can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive. Please also make sure that System.Web.SessionStateModule or a custom session state module is included in the <configuration>\<system.web>\<httpModules> section in the application configuration
    I've already done this on trying to fix:
    On my page
    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="TestForm.aspx.cs" Inherits="TestForm" EnableSessionState="True" %>
    And on my web.config
    <pages enableSessionState="true">..<httpModules>
    <remove name="Session" />
      <add name="Session" type="System.Web.SessionState.SessionStateModule, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
    </httpModules>
    Note: I am getting an error when I try to add <module> into web.config
    ASP .NET State Service is currently running.
    And the part where it keeps error is when in PageLoad, I try to set a List object something like this:
    List<object> myobject
    get
    if (Session["object"] == null)
    Session["object"] = new List<object>();
    return Session["object"] as List<object>;
    set
    Session["object"] = value;
    protected void Page_Load(object sender, EventArgs e)
    myobject= new List<object>();
    BUT the error still persists! I also try to restart IIS but still the error still happens.
    I am running out of ideas so can you help me out?
    Thank you!

    Could be your skype intercepting your requests at 80 port, in Skype options uncheck
    Or Your IE has connection checked for Proxy when there is no proxy
    Or your fiddler could intercept and act as proxy, uncheck it!
    Solves the above problem, It solved mine!
    HydTechie
    HydPhani

  • Do you need to have Adobe Acrobat X or XI in order to use FormsCentral?  Can FormsCentral be used without Acrobat to create and modify forms?

    Do you need to have Adobe Acrobat X or XI in order to use FormsCentral?  Can FormsCentral be used without Acrobat to create and modify forms?

    Hi Joseph,
    Unfortunately, no. But Adobe does offer a free 30-day trial of Acrobat (absolutely no obligation). So, you could download the trial to fix up the form. For more information, see www.adobe.com/products/acrobat.html. Acrobat is also offered on a subscription basis.
    Sara

  • Hello. Can I still use the forms central to modify my pdf.-files after the software is not supported by adope?

    Hello. Can I still use the forms central to modify my pdf.-files after the software is not supported by adope?

    Formscentral isn't designed to allow for the modification of PDF files, forms or otherwise. If you have saved forms created in Formscentral as PDF you will continue to be able to modify them in a program like Acrobat. Hope this helps.
    Andrew

  • Can indd be used to make tablet forms

    Can indd be used to create fillable forms for use with tablets?
    Currently I use indd to create forms/applications and then save them as a pdf.
    Using Acrobat Pro X, I make the forms/apps able to be filled out.
    The end-users for these documents need to be able to add descriptions, which can vary in size.
    All I can do now is just supply extra pages, but this leaves a lot of blank space if they don’t fill it.
    I have used LiveCycle, but am neither happy with the results, or proficient with how to use it.
    I need forms that look like all the other forms the company is using.
    Can anyone help me with this problem?

    What I really need to know is can indd do the job. The end users at present are using the letter size forms, and because of other restrictions within our system, these forms will need to remain a letter size. Also, these forms are for internal use only, within our business, and will never be used on a mini tablet. When I was at the Print Expo, someone said indd could do it. I just want to know how. There has to be other ways to create forms for tablets besides LiveCycle. I took the LiveCycle training, and it is hardly supported by Adobe. What other options are out there?

  • Can one Recordset created in the Main/Parent form be used in more than one Subform?

    Hi
    Can one Recordset created in the Parent form be used in more than one Subform?  The parent and subforms are unbound.
    If so, how do I do this?
    Many thanks for your help!
    smsemail

    You can declare a public object variable in the parent form's module's Declarations area:
        Public rs As DAO.Recordset
    Then, anywhere in the parent form's module:
        Dim strSQL As String
        strSQL= "SELECT etc"
        Set rs = CurrentDb.OpenRecordset(strSQL)
    In a subform's module, or anywhere else for that matter while the form is open, you can return a reference to the recordset as a property of the class:
        Form_YourParentFormName.rs
    Ken Sheridan, Stafford, England

  • Can Forms Central be used as an Electronic Ballot with a signature for the purpose of voting?

    We are sending out proxies and would like to use FormsCentral as a way for our homeowners to return their proxies on line.  The proxies have to be signed.  Can Forms Central be used as an Electronic Ballot in a Homeowners Association election?

    FormsCentral does not support signatures.

  • Struts how can validate form without using validate method.

    Hi
    Is this possible validate a form without using validate form
    if it is possible then
    please tell me how can we validate it
    Thanks
    Surendra

    Make use of validator framework.. this would enable you to do validation both @ client side by javascript under defined validation rules and also enables you to do it @ serverside....
    And if want to create a Dyanamic Form beans which takes care of validations to make use ValidatorForm or DynaValidatorForm class under the pacakage org.apache.struts.validator and create an instance of it with preconfigured validations under structs...
    Make use of the links below which i think are the best tutors for newbies....
    http://www.roseindia.net/struts/struts_validator_framework.shtml
    http://www.oracle.com/technology/oramag/oracle/04-jan/o14dev_struts.html
    http://www.onjava.com/pub/a/onjava/2002/12/11/jakartastruts.html
    Hope might be of some help.. :)
    REGARDS,
    RaHuL

  • Can you create a form not using a php script?

    I need to create a contact us form on my website using DW and have researched how and understand the easiest way is using a php script.  Unfortuntately, my webhost server does not support this and will charge me an arm and a leg in order to to do it.  Is there another way to have a functioning contact form not using a php script?

    Yes and no.
    You could use a mailto link for your form action instead of a PHP script.
    There are several problems with this method though. First, when you do that, you are at the mercy of the viewer's computer set-up. Mailto links use whatever email client is installed on the machine in order to send the message. Public computers (libraries, colleges, etc) almost never have an email client installed, so when a viewer on one of those machines clicks the link, nothing happens. Secondly, your email address is open for spam harvesters, so you may end up with enlargement and nigerian scam emails flooding your inbox.
    Since your provider doesn't give you a way to do it the right way on your server, you may want to look into email form services online and see if they are less expensive than your current alternative.

  • Possible to allow the user to navigate to form sections using a dropdown?

    I am designing a realtively long PDF form that has many sections.
    I am hoping that I can create a TAG inside the PDF form that I can reference using drop downs that the free Reader will support
    The desired functionality is :
    User activates drop down - selects the section they want to see if it is not already visible - and the reader moves them to that location -
    so they can read the data at that location -
    Can you please help me by indicating :
    1. Is this possible ?.
    2. Where I can find a useful example for doing something of this sort ?
    Thank You very much

    Fundamentally, you have two possibilities:
    a) create Named Destinations where you want the user to get to, and then make your drop so that the destination name will be defined as return value, so that you can go to it.
    b) define the first field of a section, and put its name as return value in the drop down (aka combo box). Then set the focus to that field.
    HTH.
    Max Wyss.

Maybe you are looking for