Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

using a web form to store data -

Status
Not open for further replies.

tango1948

Programmer
Dec 23, 2006
111
IL
Hi,
I have a simple scenario, I want to write a web form for each employee (employeeNo.HTM). The form consists of Label/Textbox pairs. The Label text will contain the original value for the field, the textbox the new value - if there is one. I would like to persist the data in the textboxes between sessions using the web form as the data store (no databases) at the end of each month I'll search the web forms and retrieve the new values from the textboxes and update the employee file, and the label text for each employees web form, is this possible?
Any advice, pointers, tutorials appreciated.

Thanks David
 
...is this possible?
No database = No storage.

The short answer is no.

You need some server side code and a database (or other updatable file) to store the data.

Greg
"Personally, I am always ready to learn, although I do not always like being taught." - Winston Churchill
 
I thought maybe XML was a way of storing web form data.
Is this an option?
 
Thanks Mark,
Do you know any decent tutorials to get started.?

David
 
You could always just store the data in a flat text file.
I would think perl or php would be simplest for you to learn to code it.
 
If there is really no any chance for a database, PHP can read and write textfiles, but maybe a simple SQL database would be better...

Or use paper and pencil. :p - Okay just kidding.
 
Thanks All,

In the end I'm going the asp.net, sqlserver route.

I would have liked to try xml with an xml db but no time

to learn.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top