Add to Favorites    Make Home Page 6360 Online  
 Language Categories  
 Our Services  

Home » ASP Home » HTML Formatting Home » Form Maker

A D V E R T I S E M E N T

Search Projects & Source Codes:

Title Form Maker
Description This is an application that creates a form in HTML depending on user specs
Category ASP » HTML Formatting
Hits 364941
Code Select and Copy the Code
<HTML> <HEAD> <meta http-equiv="Content-Language" content="en-gb"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>Online Form Maker</title> <script> window.windowname= "Add Form Page" orpage= window.windowname Function startForm(form) { nname= form.fname.value; nname= ((nname== "") ? nname= "" : nname= " NAME=" + nname); ntarget= form.ftarget.value; ntarget= ((ntarget== "") ? ntarget= "" : ntarget= " TARGET=" + ntarget); nenctype= form.fenctype.value; nenctype= ((nenctype== "") ? nenctype= "" : nenctype= " ENCTYPE=" + nenctype); whtml= form.HTML.value; mymethods= form.chosenmethod.selectedIndex; mymethodsarray= New Array(); mymethodsarray[0] = ""; mymethodsarray[1] = "GET"; mymethodsarray[2] = "POST"; mymethod= mymethodsarray[mymethods]; mymethod= ((mymethod== "") ? mymethod= "" : mymethod= " METHOD=" + mymethod); myaction= form.chosenaction.value; myaction= ((myaction== "") ? myaction= "" : myaction= " METHOD="" + myaction + """); nhtml= whtml + " <FORM" + nname + myaction + mymethod + ntarget + nenctype + ">"; form.HTML.value = nhtml; } Function endForm(form) { whtml= form.HTML.value; nhtml= whtml + " </FORM>"; form.HTML.value = nhtml; } Function newItem(txtarea, form) { addbre= (form.addbr.checked== True) ? addbre=form.addbr.value : addbre= ""; crows= form.chooserows.value; ccols= form.choosecols.value; crows= ((crows== "") ? crows= "" : crows= " ROWS=" + crows); ccols= ((ccols== "") ? ccols= "" : ccols= " COLS=" + ccols); ntoit= form.choosevalue.value; cname= form.choosename.value; cname= ((cname== "") ? cname= "" : cname= " NAME="" + cname + """); ctype= form.choosetype.selectedIndex; ctypearray= New Array(); ctypearray[0] = "text"; ctypearray[1] = "radio"; ctypearray[2] = "checkbox"; ctypearray[3] = "button"; ctypearray[4] = "hidden"; ctypearray[5] = "reset"; ctypearray[6] = "submit"; ctypearray[7] = "password"; ntoit= ((0 < ctype) ? ntoit= ntoit : ntoit= ""); ntoit= ((ctype > 2) ? ntoit= "" : ntoit= ntoit); check= form.checks.value checktf= form.checks.checked check= ((ctype== 2) | (ctype== 1) ? check= check : check= "") check= (checktf== True) ? check= check : check= ""; cvalue= form.choosevalue.value; cvalue= ((cvalue== "") ? cvalue= "" : cvalue= " VALUE="" + cvalue + """); csize= form.choosesize.value; csize= ((ctype== 7) | (ctype== 0) ? csize= csize : csize= "") csize= ((csize== "") ? csize= "" : csize= " SIZE=" + csize); clength= form.chooselength.value; clength= ((clength== "") ? clength= "" : clength= " MAXLENGTH=" + clength); clength= ((ctype > 0) ? clength="" : clength= clength); whtml= form.HTML.value; ctype= " TYPE="" + ctypearray[ctype] + """; nhtml= whtml + " <INPUT" + check + cname + ctype + cvalue + csize + clength + ">" + ntoit + addbre; txtdsply= "Default Text" nwhtml= whtml + " <TEXTAREA" + cname + crows + ccols + ">" + txtdsply + "</TEXTAREA>" + addbre; nhtml= ((txtarea== 8) ? nhtml= nwhtml : nhtml= nhtml); form.HTML.value = nhtml; } Function genNewPage(form) { header= "<HTML> <HEAD> <TITLE>Generated Form</TITLE> </HEAD> <BODY BGCOLOR="white">"; newhtml= form.HTML.value; footer= "</BODY> </HTML>"; newpage= header + " " + newhtml + " " + footer; preWin= Open("", "Preview", "width=400,height=400,status=no,toolbar=no,menubar=no"); preWin.document.open(); preWin.document.write(newpage); preWin.document.close(); } </script> <base target="leftframe"> </HEAD> <BODY> <TABLE WIDTH="100%" HEIGHT="40" BORDER="0" BGCOLOR="#FFFFFF" BORDERCOLOR="#FFFFFF"> <TR> <TD><FONT SIZE=3 COLOR=Blue FACE="Arial,Helvetica,Times New Roman"><CENTER><STRONG>FORM MAKER</STRONG></CENTER></FONT> <BR> <CENTER><table WIDTH="96%" BORDER="0" CELLSPACING="5" CELLPADDING="5"> <tr> <td WIDTH="100%"><FONT SIZE=2 FACE="Arial,Helvetica,Times New Roman"><STRONG><CENTER>Make your own feedback form With FormMaker:</CENTER></STRONG></FONT> <font FACE="ARIEL,HELVETICA, TIMES NEW ROMAN" SIZE="-1"><form NAME="addform"> <p>Form options:</p> <p>Name: <Input NAME="fname" Type="text" size="20"><br> Action: <Input Type="text" NAME="chosenaction" size="20"><br> Method: <Select NAME="chosenmethod" SIZE="1"> <Option SELECTED>none </Option> <Option>Get </Option> <Option>POST </Option> </Select><br> Target: <Input NAME="ftarget" Type="text" VALUE="code" size="20"><br> Enctype: <Input NAME="fenctype" Type="text" size="20"><br> </p> <p><Input VALUE="Start Form" Type="button" NAME="start" onClick="startForm(document.addform)"> <Input VALUE="End Form" Type="button" NAME="end" onClick="endForm(document.addform)"></p> <p>Description of form item To add:</p> <p>Type:<Select NAME="choosetype" SIZE="1"> <Option SELECTED>Text Field </Option> <Option>Radio Button </Option> <Option>Check Box </Option> <Option>Button </Option> <Option>Hidden </Option> <Option>Reset </Option> <Option>Submit </Option> <Option>Password </Option> <Option>Text Area </Option> </Select><br> Value:<Input NAME="choosevalue" Type="text" VALUE size="20"><br> Name:<Input NAME="choosename" Type="text" VALUE size="20"><br> Size:<Input NAME="choosesize" Type="text" VALUE size="20"><br> Maximum Length:<Input NAME="chooselength" Type="text" VALUE size="20"><br> Rows:<Input NAME="chooserows" Type="text" VALUE size="20"><br> Columns:<Input NAME="choosecols" Type="text" VALUE size="20"><br> <Input NAME="addbr" Type="checkbox" VALUE="<BR>">Add <BR> tag after form item?<br> <Input NAME="checks" Type="checkbox" VALUE=" CHECKED">Is checkbox/radio button checked?</p> <p><Input VALUE="Add Item" Type="button" NAME="additem" onClick="newItem(document.addform.choosetype.selectedIndex,document.addform)"></p> <p>HTML:<br> <textarea NAME="HTML" ROWS="10" COLS="45"></textarea></p> <p><Input VALUE="Reset" Type="reset" NAME="reset"> <Input VALUE="Preview" Type="button" NAME="preview" onClick="genNewPage(document.addform)"> </font></p> </form> </td> </tr> </table></CENTER> <!--content stop--> <BR><BR> </TD> </TR> </TABLE> </BODY> </HTML>

Related Source Codes

Script Name Author
ııııııııııııııııııııı VyomWorld
Resistor color code reader A.Chermarajan.
Telephone Directory dhivya
card swapping game (Mini Project) nityanand
simple hangman-pascalsource Seabert
college dirtectory (Mini Project) msridhar
Poll Application John van Meter
ASP Daily Hit Counter. Tejaskumar Gandhi
To avoid null in asp environment using sql Sami
Maklumbalas webmaster
poll John van Meter
EasyASP Template Engine. TjoekBezoer
Basic Calculator using HTML & Javascript. Patrick M. D Souza
What servers support ASP ? VyomWorld
What is ASP? VyomWorld

A D V E R T I S E M E N T




Google Groups Subscribe to SourceCodesWorld - Techies Talk
Email:

Free eBook - Interview Questions: Get over 1,000 Interview Questions in an eBook for free when you join JobsAssist. Just click on the button below to join JobsAssist and you will immediately receive the Free eBook with thousands of Interview Questions in an ebook when you join.

New! Click here to Add your Code!


ASP Home | C Home | C++ Home | COBOL Home | Java Home | Pascal Home
Source Codes Home Page

 Advertisements  

Google Search

Google

Source Codes World.com is a part of Vyom Network.

Vyom Network : Web Hosting | Dedicated Server | Free SMS, GRE, GMAT, MBA | Online Exams | Freshers Jobs | Software Downloads | Interview Questions | Jobs, Discussions | Placement Papers | Free eBooks | Free eBooks | Free Business Info | Interview Questions | Free Tutorials | Arabic, French, German | IAS Preparation | Jokes, Songs, Fun | Free Classifieds | Free Recipes | Free Downloads | Bangalore Info | Tech Solutions | Project Outsourcing, Web Hosting | GATE Preparation | MBA Preparation | SAP Info | Software Testing | Google Logo Maker | Freshers Jobs

Sitemap | Privacy Policy | Terms and Conditions | Important Websites
Copyright ©2003-2024 SourceCodesWorld.com, All Rights Reserved.
Page URL: http://www.sourcecodesworld.com/source/show.asp?ScriptID=307


Download Yahoo Messenger | Placement Papers | Free SMS | C Interview Questions | C++ Interview Questions | Quick2Host Review