Note: You must be registered in order to post a reply.
T O P I C R E V I E W
fredroode
Posted - 01 Sep 2005 : 16:10:07 Creating an input form with Dynamic HTML Editor was easy and when uploading it, it even worked. when pushing the submit button the data seems to be going somewhere but i have got no idea where. I attached a destination respons.asp to the submit button, but there is no file of such a name how do i create a file to collect the data
2 L A T E S T R E P L I E S (Newest First)
Martin1
Posted - 02 Sep 2005 : 09:38:25 There is also software that can help you with creating a form for instance in PHP.
Posted - 02 Sep 2005 : 08:54:54 For collecting your data you have to send your data to a server (the address is specified by the action property of the container form) The action must point to a server page like .asp, .jsp, .chm that can read informations from the header of the HTTP request (using Request.Querystring or Request.Form methods). There is a bit more theory to teach you so I suggest you to search on the internet for more info.
Please see the help on the form object and the sample "Sample 13 - ClientServer.dhe"