Guest Eric Posted August 2, 2007 Posted August 2, 2007 Does anyone have any suggestions on any forum / web site on how to create an online registration form? I would like to create an online form for seminar registration, once all the text fields have been selected and checked, after submitting this form, all submitted information will be sent to specific email for management. Does anyone have any suggestions on any related resources / articles to describe the workflow for this process? Thank for any suggestions Eric
Guest Newbie Coder Posted August 2, 2007 Posted August 2, 2007 Re: Any forum / web site on how to create an online registration form? Eric, There are listerally thousands of sites on the Internet Which language are you writing the form in? Download: http://msdn.microsoft.com/vstudio/express/vwd/ and then you'll have to learn a programming language. Microsoft's ASP.NET site: http://www.asp.net You can search for contact forms there You can also download Dreamweaver from the http://www.adobe.com/products/dreamweaver/ site. It used to have 73% of the market place You will design a front end, add validators to the controls then if all is ok then use the 'Mail' class in the .NET Framework to handle the actual e-mail side of it Don't forget you cannot upload ASP.NET pages to free webspace & if you create an HTML version then you have 2 problems: 1) SPAM spiders 2) Security dialog appearing You can also use a Perl script to send mail too but again you have to check to see if the FREE webspace allows Perl scrips... -- Newbie Coder (It's just a name) "Eric" <Eric@discussions.microsoft.com> wrote in message news:2AC7F413-5D32-4AEE-B76D-97E7B7B67630@microsoft.com... > Does anyone have any suggestions on any forum / web site on how to create an > online registration form? > > I would like to create an online form for seminar registration, once all the > text fields have been selected and checked, after submitting this form, all > submitted information will be sent to specific email for management. > Does anyone have any suggestions on any related resources / articles to > describe the workflow for this process? > Thank for any suggestions > Eric
Guest Newbie Coder Posted August 2, 2007 Posted August 2, 2007 Re: Any forum / web site on how to create an online registration form? Eric, There is also the ASP.NET Newsgroup, but they deal with programming languages like C#/Java/Javascript/VB.NET... microsoft.public.dotnet.framework.aspnet http://www.microsoft.com/communities/newsgroups/list/en-us/default.aspx?dg=microsoft.public.dotnet.framework.aspnet -- Newbie Coder (It's just a name) "Newbie Coder" <newbiecoder@spammeplease.com> wrote in message news:uYHgjwS1HHA.6128@TK2MSFTNGP02.phx.gbl... > Eric, > > There are listerally thousands of sites on the Internet > > Which language are you writing the form in? > > Download: > > http://msdn.microsoft.com/vstudio/express/vwd/ > > and then you'll have to learn a programming language. Microsoft's ASP.NET site: > > http://www.asp.net > > You can search for contact forms there > > You can also download Dreamweaver from the > http://www.adobe.com/products/dreamweaver/ site. It used to have 73% of the > market place > > You will design a front end, add validators to the controls then if all is ok > then use the 'Mail' class in the .NET Framework to handle the actual e-mail side > of it > > Don't forget you cannot upload ASP.NET pages to free webspace & if you create an > HTML version then you have 2 problems: > > 1) SPAM spiders > 2) Security dialog appearing > > You can also use a Perl script to send mail too but again you have to check to > see if the FREE webspace allows Perl scrips... > > -- > Newbie Coder > (It's just a name) > > > > "Eric" <Eric@discussions.microsoft.com> wrote in message > news:2AC7F413-5D32-4AEE-B76D-97E7B7B67630@microsoft.com... > > Does anyone have any suggestions on any forum / web site on how to create an > > online registration form? > > > > I would like to create an online form for seminar registration, once all the > > text fields have been selected and checked, after submitting this form, all > > submitted information will be sent to specific email for management. > > Does anyone have any suggestions on any related resources / articles to > > describe the workflow for this process? > > Thank for any suggestions > > Eric > >
Recommended Posts