UrbanPro

Learn Adobe Dreamweaver from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Search in

How to make a form using Dreamweaver at my website?

Asked by Last Modified  

19 Answers

Learn Adobe Dreamweaver

Follow 0
Answer

Please enter your answer

Trainer

• Open a page and place the insertion point where you want the form to web page • Select Insert > Form, or select the Forms category in the Insert panel and click the Form icon. • Set the properties of the HTML form in the Property inspector (Window >Properties): a.In the Document window,...
read more
• Open a page and place the insertion point where you want the form to web page • Select Insert > Form, or select the Forms category in the Insert panel and click the Form icon. • Set the properties of the HTML form in the Property inspector (Window >Properties): a.In the Document window, click the form outline to select the form. b.In the Form Name box, type a unique name to identify the form. read less
Comments

Expert in Web Design and development

By dragging/dropping form controls/template in DW tool will generate junk code, I would recommend to create by writing won code by which unwanted css/js files won't be create which will reduces effort in later stage.
Comments

An IT professional with diverse knowledge

using form fields provided in dreamweaver
Comments

Qa mentor | sdet | istqb® | csm® | sfc™ | perfecto automation certified | recommended on urbanpro

You can use below on line service if you need some ready made code and want to integrate with existing website : http://www.123contactform.com/php-form.html http://www.techrepublic.com/blog/web-designer/form-validation-create-a-simple-web-form-with-dreamweaver/
Comments

IT Professional Trainer with 15 years of experience in UI/UX Designer, UI Developer & UX Practices

Creating form fields and design is easy in Dreamweaver. The tricky part is merging it with database or CGI for direct form input. If you know any of the 2, its only linking the respective fields.
Comments

Computer Teacher experienced in web designing, Java Trainer, Soft skill training

Hello You have quite a few options to create a form in dreamweaver for your website decide the type of form you require for website then using form tag from insert option you can view form field list in the side pane from where you can drag and drop the field needed for your form , you can...
read more
Hello You have quite a few options to create a form in dreamweaver for your website decide the type of form you require for website then using form tag from insert option you can view form field list in the side pane from where you can drag and drop the field needed for your form , you can also stylize it either using css file from templates or creating your own css file read less
Comments

Web Master ( Web Design & Digital Marketing Trainer)

https://www.youtube.com/watch?v=7soyO5DwJMY
Comments

Front End Developing and Designing, UX and UI Design, jQuery, HTML5,CSS3, Sublime Text with Emmet Coding, Bootstrap 3, LESS, SASS

Do some manual code that would be helpful for your future...
Comments

Multimedia Expert with designing new concepts.

n Dreamweaver, form input types are called form objects. Form objects are the mechanisms that allow users to input data. You can add the following form objects to a form:
Comments

Hi Naina Here are the steps to create a Form in dreamweaver Create an HTML form As part of HTML5 support, new attributes have been introduced in the Properties panel for form elements. In addition, four new form elements (E-mail, search, telephone, URL) have been introduced in the Forms section...
read more
Hi Naina Here are the steps to create a Form in dreamweaver Create an HTML form As part of HTML5 support, new attributes have been introduced in the Properties panel for form elements. In addition, four new form elements (E-mail, search, telephone, URL) have been introduced in the Forms section of the Insert panel. For more information, see Enhanced HTML5 support for form elements. Open a page and place the insertion point where you want the form to appear. Select Insert > Form, or select the Forms category in the Insert panel and click the Form icon. In Design view, forms are indicated by a dotted red outline. If you don’t see this outline, select View > Visual Aids > Invisible Elements. Set the properties of the HTML form in the Property inspector (Window >Properties): a.In the Document window, click the form outline to select the form. b.In the Form Name box, type a unique name to identify the form. Naming a form makes it possible to reference or control the form with a scripting language, such as JavaScript or VBScript. If you do not name the form, Dreamweaver generates a name using the syntax formn, and increments the value of n for each form added to the page. c.In the Action box, specify the page or script that will process the form data by typing the path, or clicking the folder icon to navigate to the appropriate page or script. Example: processorder.php. d.In the Method pop?up menu, specify the method to transmit the form data to the server. Set any of the following options: Default Uses the browser’s default setting to send the form data to the server. Typically, the default value is the GET method. GET Appends the value to the URL requesting the page. POST Embeds the form data in the HTTP request. Do not use the GET method to send long forms. URLs are limited to 8192 characters. If the amount of data sent is too large, data will be truncated, leading to unexpected or failed processing results. Dynamic pages generated by parameters passed by the GET method can be bookmarked because all the values needed to regenerate the page are contained in the URL displayed in the browser’s Address box. In contrast, dynamic pages generated by parameters passed by the POST method cannot be bookmarked. If you collect confidential user names and passwords, credit card numbers, or other confidential information, the POST method may appear more secure than the GET method. However, the information sent by the POST method is not encrypted and can easily be retrieved by a hacker. To ensure security, use a secure connection to a secure server. e.(Optional) In the Enctype pop?up menu, specify the MIME encoding type of the data submitted to the server for processing. The default setting of application/x-www-form-urlencode is typically used in conjunction with the POST method. If you are creating a file-upload field, specify the multipart/form?data MIME type. f.(Optional) In the Target pop?up menu, specify the window in which to display the data returned by the invoked program. If the named window is not already open, a new window with that name opens. Set any of the following target values: _blank Opens the destination document in a new unnamed window. _parent Opens the destination document in the parent window of the one displaying the current document. _self Opens the destination document in the same window as the one in which the form was submitted. _top Opens the destination document in the body of the current window. This value can be used to ensure that the destination document takes over the full window even if the original document was displayed in a frame. Insert form objects in the page: a.Place the insertion point where the form object should appear in the form. b.the object in the Insert > Form menu, or in the Forms category of the Insert panel. c.Complete the Input Tag Accessibility Attributes dialog box. For more information, click the Help button in the dialog box. Note: If you don’t see the Input Tag Accessibility Attributes dialog box, you might have had the Insertion point in Code view when you tried to insert the form object. Make sure the Insertion point is in Design view and try again. For more information on this topic, see David Powers’s article Creating HTML forms in Dreamweaver. d.Set the properties of the objects. e.Enter a name for the object in the Property inspector. Every text field, hidden field, check box, and list/menu object must have a unique name that identifies the object in the form. Form object names cannot contain spaces or special characters. You can use any combination of alphanumeric characters and an underscore (_). The label you assign to the object is the variable name that stores the value (the entered data) of the field. This is the value sent to the server for processing. Note: All radio buttons in a group must have the same name. f.To label the text field, check box, or radio button object on the page, click beside the object and type the label. Adjust the layout of the form. Use line breaks, paragraph breaks, preformatted text, or tables to format your forms. You cannot insert a form in another form (that is, you cannot overlap tags), but you can include more than one form in a page. When designing forms, remember to label the form fields with descriptive text to let users know what they’re responding to—for example, “Type your name” to request name information. Use tables to provide structure for form objects and field labels. When using tables in forms make sure all the table tags are included between the form tags. You can have a look at our Dreamweaver course at http://www.digiscapegallery.com/product/adobe-dreamweaver-cs4/ And our diploma course for website designing at http://www.digiscapegallery.com/product/diploma-in-website-multimedia/ Thanks Digiscape Gallery Reach us at +91 97109 38632, +9144 42138895 Email us at training@digiscape.in read less
Comments

View 17 more Answers

Related Questions

How to make a form using Dreamweaver at my website?
You can find in top menus called FORM from there you can drop the HTML code in DW.
Manshi
Can I create a website on Dreamweaver and publish it on my own?
Yes, you can create website from DW but publishing that to online. You should have domain name and hosting space.
Naina
How to make a form using Dreamweaver at my website?
For this, you have to go to form panel in Dreamweaver. There you will find all the required field.
Chetan

Now ask question in any of the 1000+ Categories, and get Answers from Tutors and Trainers on UrbanPro.com

Ask a Question

Related Lessons

Recommended Articles

Microsoft Excel is an electronic spreadsheet tool which is commonly used for financial and statistical data processing. It has been developed by Microsoft and forms a major component of the widely used Microsoft Office. From individual users to the top IT companies, Excel is used worldwide. Excel is one of the most important...

Read full article >

Whether it was the Internet Era of 90s or the Big Data Era of today, Information Technology (IT) has given birth to several lucrative career options for many. Though there will not be a “significant" increase in demand for IT professionals in 2014 as compared to 2013, a “steady” demand for IT professionals is rest assured...

Read full article >

Information technology consultancy or Information technology consulting is a specialized field in which one can set their focus on providing advisory services to business firms on finding ways to use innovations in information technology to further their business and meet the objectives of the business. Not only does...

Read full article >

Hadoop is a framework which has been developed for organizing and analysing big chunks of data for a business. Suppose you have a file larger than your system’s storage capacity and you can’t store it. Hadoop helps in storing bigger files than what could be stored on one particular server. You can therefore store very,...

Read full article >

Looking for Adobe Dreamweaver Training?

Learn from the Best Tutors on UrbanPro

Are you a Tutor or Training Institute?

Join UrbanPro Today to find students near you
X

Looking for Adobe Dreamweaver Classes?

The best tutors for Adobe Dreamweaver Classes are on UrbanPro

  • Select the best Tutor
  • Book & Attend a Free Demo
  • Pay and start Learning

Learn Adobe Dreamweaver with the Best Tutors

The best Tutors for Adobe Dreamweaver Classes are on UrbanPro

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more