Hi

I'm relatively new to writing classic ASP, and have managed to so far to get by with code borrowed from other projects I've inherited.

I'm in the process of trying to build a system that will allow users to retrieve information from a database, review it and where necessary update it.

So far, I've created a form which issues a request to SQL to execute a stored procedure before reading the returned values into an array and then displaying them in a friendly format.

My plan is to have a text field on-screen for every piece of information being displayed. The idea is that if the user wanted to update a piece of information, they would put that new information into the text field that corresponds to the field they wish to change. Once all changes have been keyed in, they would then click a button which would reload the form - a flag would be passed through to instruct the form to execute a stored procedure to perform the update.

Everything is going fine up to the point where I try to retrieve the information from the text boxes. I can't figure out a way to get the values from the text boxes into the URL that would be fired when the button is clicked.

If it's of any use, the button in question would ideally be a graphic rather than a traditional button.

Any and all help greatly appreciated.