Welcome to MobyThreads.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in
All support for the MobyThreads Threaded phpBB MOD can now be found on welsolutions at this forum

How do I capture input on a html form into a text file on ..

 
   Web Hosting and Web Master Forums (Home) -> IIS RSS
Next:  prevent image linking?  
Author Message
Grd

External


Since: Jun 04, 2005
Posts: 3



(Msg. 1) Posted: Sat Jun 04, 2005 12:48 pm
Post subject: How do I capture input on a html form into a text file on IIS?
Archived from groups: microsoft>public>inetserver>iis (more info?)

Hi,

I've just started with IIS and have a web site running.

However I want to create a form for the user to input certain information.
How do I get an HTML web form to submit the information to a text file. I
have found the necessary HTML tags on the web to create the form, the text
boxes, submit buttons etc. I can put it in my wwwroot folder and the reset
button works but I don't understand how to get the submit button to do
something.

Is it to do with the action part of the FORM tag -
<FORM action= ????? method="post">

Thanks in advance

Grd

 >> Stay informed about: How do I capture input on a html form into a text file on .. 
Back to top
Login to vote
user1772

External


Since: Jun 10, 2004
Posts: 1807



(Msg. 2) Posted: Sat Jun 04, 2005 10:50 pm
Post subject: Re: How do I capture input on a html form into a text file on IIS? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Sat, 4 Jun 2005 12:48:01 -0700, Grd <Grd RemoveThis @discussions.microsoft.com>
wrote:

 >I've just started with IIS and have a web site running.
 >
 >However I want to create a form for the user to input certain information.
 >How do I get an HTML web form to submit the information to a text file. I
 >have found the necessary HTML tags on the web to create the form, the text
 >boxes, submit buttons etc. I can put it in my wwwroot folder and the reset
 >button works but I don't understand how to get the submit button to do
 >something.
 >
 >Is it to do with the action part of the FORM tag -
 > <FORM action= ????? method="post"

Form input is directed to the action URL, where you need to process
it. For an ASP option, try looking at:

<a style='text-decoration: underline;' href="http://www.asptutorial.info/learn/Forms.asp" target="_blank">http://www.asptutorial.info/learn/Forms.asp</a>

Jeff<!-- ~MESSAGE_AFTER~ -->

 >> Stay informed about: How do I capture input on a html form into a text file on .. 
Back to top
Login to vote
Kristofer Gafvert [MVP]

External


Since: May 28, 2005
Posts: 210



(Msg. 3) Posted: Sun Jun 05, 2005 7:35 am
Post subject: Re: How do I capture input on a html form into a text file on IIS? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hello,

Yes, it has to do with the action part.

Have you checked the tutorials available at <a style='text-decoration: underline;' href="http://www.w3schools.com" target="_blank">www.w3schools.com</a> ?

ASP Forms:
<a style='text-decoration: underline;' href="http://www.w3schools.com/asp/asp_inputforms.asp" target="_blank">http://www.w3schools.com/asp/asp_inputforms.asp</a>
HTML:
<a style='text-decoration: underline;' href="http://www.w3schools.com/html/default.asp" target="_blank">http://www.w3schools.com/html/default.asp</a>
ASP.NET Forms:
<a style='text-decoration: underline;' href="http://www.w3schools.com/aspnet/aspnet_forms.asp" target="_blank">http://www.w3schools.com/aspnet/aspnet_forms.asp</a>

You would get better help in a (for example) ASP newsgroup, or forum,
since this is not really related to IIS.



--
Regards,
Kristofer Gafvert (IIS MVP)
<a style='text-decoration: underline;' href="http://www.gafvert.info" target="_blank">www.gafvert.info</a> - My Articles and help
<a style='text-decoration: underline;' href="http://www.ilopia.com" target="_blank">www.ilopia.com</a>


Grd wrote:

 > Hi,
 >
 > I've just started with IIS and have a web site running.
 >
 > However I want to create a form for the user to input certain
information.
 > How do I get an HTML web form to submit the information to a text file. I
 > have found the necessary HTML tags on the web to create the form, the
text
 > boxes, submit buttons etc. I can put it in my wwwroot folder and the
reset
 > button works but I don't understand how to get the submit button to do
 > something.
 >
 > Is it to do with the action part of the FORM tag -
 > <FORM action= ????? method="post">
 >
 > Thanks in advance
 >
 > Grd<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: How do I capture input on a html form into a text file on .. 
Back to top
Login to vote
Grd

External


Since: Jun 04, 2005
Posts: 3



(Msg. 4) Posted: Sun Jun 05, 2005 9:49 am
Post subject: Re: How do I capture input on a html form into a text file on IIS? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Jeff,

Thanks for the tutorial link.

Appreciated

Grd
"Jeff Cochran" wrote:

 > On Sat, 4 Jun 2005 12:48:01 -0700, Grd <Grd.RemoveThis@discussions.microsoft.com>
 > wrote:
 >
  > >I've just started with IIS and have a web site running.
  > >
  > >However I want to create a form for the user to input certain information.
  > >How do I get an HTML web form to submit the information to a text file. I
  > >have found the necessary HTML tags on the web to create the form, the text
  > >boxes, submit buttons etc. I can put it in my wwwroot folder and the reset
  > >button works but I don't understand how to get the submit button to do
  > >something.
  > >
  > >Is it to do with the action part of the FORM tag -
  > > <FORM action= ????? method="post"
 >
 > Form input is directed to the action URL, where you need to process
 > it. For an ASP option, try looking at:
 >
<font color=purple> > <a style='text-decoration: underline;' href="http://www.asptutorial.info/learn/Forms.asp</font" target="_blank">http://www.asptutorial.info/learn/Forms.asp</font</a>>
 >
 > Jeff
 ><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: How do I capture input on a html form into a text file on .. 
Back to top
Login to vote
Grd

External


Since: Jun 04, 2005
Posts: 3



(Msg. 5) Posted: Sun Jun 05, 2005 9:52 am
Post subject: Re: How do I capture input on a html form into a text file on IIS? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hi Kristofer,

Thanks for pointing me in the right direction.
I find the wealth of web tutorials on the internet to be very helpful. I
used them to make my first HTML page without any knowledge so I'll definately
check those ASP links you sent.


Grd

"Kristofer Gafvert [MVP]" wrote:

 > Hello,
 >
 > Yes, it has to do with the action part.
 >
 > Have you checked the tutorials available at <a style='text-decoration: underline;' href="http://www.w3schools.com" target="_blank">www.w3schools.com</a> ?
 >
 > ASP Forms:
<font color=purple> > <a style='text-decoration: underline;' href="http://www.w3schools.com/asp/asp_inputforms.asp</font" target="_blank">http://www.w3schools.com/asp/asp_inputforms.asp</font</a>>
 > HTML:
<font color=purple> > <a style='text-decoration: underline;' href="http://www.w3schools.com/html/default.asp</font" target="_blank">http://www.w3schools.com/html/default.asp</font</a>>
 > ASP.NET Forms:
<font color=purple> > <a style='text-decoration: underline;' href="http://www.w3schools.com/aspnet/aspnet_forms.asp</font" target="_blank">http://www.w3schools.com/aspnet/aspnet_forms.asp</font</a>>
 >
 > You would get better help in a (for example) ASP newsgroup, or forum,
 > since this is not really related to IIS.
 >
 >
 >
 > --
 > Regards,
 > Kristofer Gafvert (IIS MVP)
 > <a style='text-decoration: underline;' href="http://www.gafvert.info" target="_blank">www.gafvert.info</a> - My Articles and help
<font color=purple> > <a style='text-decoration: underline;' href="http://www.ilopia.com</font" target="_blank">www.ilopia.com</font</a>>
 >
 >
 > Grd wrote:
 >
  > > Hi,
  > >
  > > I've just started with IIS and have a web site running.
  > >
  > > However I want to create a form for the user to input certain
 > information.
  > > How do I get an HTML web form to submit the information to a text file. I
  > > have found the necessary HTML tags on the web to create the form, the
 > text
  > > boxes, submit buttons etc. I can put it in my wwwroot folder and the
 > reset
  > > button works but I don't understand how to get the submit button to do
  > > something.
  > >
  > > Is it to do with the action part of the FORM tag -
  > > <FORM action= ????? method="post">
  > >
  > > Thanks in advance
  > >
  > > Grd
 ><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: How do I capture input on a html form into a text file on .. 
Back to top
Login to vote
lists

External


Since: Apr 22, 2004
Posts: 390



(Msg. 6) Posted: Mon Jun 06, 2005 10:55 am
Post subject: Re: How do I capture input on a html form into a text file on IIS? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Sat, 4 Jun 2005 12:48:01 -0700, Grd <Grd DeleteThis @discussions.microsoft.com>
wrote:


There is a good PERL script at: bignosebird.com

John Cesta

The CPU Checker - Monitors your CPU % while you sleep
LogFileManager - IIS LogFile Management Tool
WebPageChecker - Helps Maintain Server UpTime
DomainReportIt PRO - Helps Rebuild IIS
<a style='text-decoration: underline;' href="http://www.serverautomationtools.com" target="_blank">http://www.serverautomationtools.com</a>

 >Hi,
 >
 >I've just started with IIS and have a web site running.
 >
 >However I want to create a form for the user to input certain information.
 >How do I get an HTML web form to submit the information to a text file. I
 >have found the necessary HTML tags on the web to create the form, the text
 >boxes, submit buttons etc. I can put it in my wwwroot folder and the reset
 >button works but I don't understand how to get the submit button to do
 >something.
 >
 >Is it to do with the action part of the FORM tag -
 > <FORM action= ????? method="post">
 >
 >Thanks in advance
 >
 >Grd
 >
 ><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: How do I capture input on a html form into a text file on .. 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
New problem with input form - I have a form that I have been using for almost a year that collects data and puts the data collected, through an odbc connection, into an SQL server database. It has been working up until about a week ago. The form is a vbscript form. I installed..

HowTo Send Uploaded File with INPUT Type file to Sql Serv.. - I have the following problem: I have the following form client side: <FORM.......> &lt;FORM action="./WZUpload.asp" method="Post" enctype="multipart/form-data" WIDTH=100%> &lt;INPUT Type="file&quo...

aspx page opens in text HTML - Hi, 1. I'm running IIS 5.1 on Windows XP. 2. Install default page of IIS Getting Started works fine from "localhost" in URL. 3. I then changed the Home Directory in IIS Manager to my .aspx app folder , which is a folder beneath wwwroot. 3....

Cannote submit multipart/form-data (HTML, PHP) - Hello, Ive run into an issue that i have no clue on how to fix. Im running IIS 6.0 on Windows 2003 Web Edition. On that server, I run PHP and ActivePerl, as well as the Zend Optimizer for PHP, ASP.NET which came with IIS6, and Gene6FTP Server. I..

reading text file - Hi There I have written sample to code to read log file which is similar to text file. It displays all the lines of log file without any problem. But is it possible if I want to display last 5 lines of that particular log file or text file?? Thanx in...
   Web Hosting and Web Master Forums (Home) -> IIS All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]