I'm looking to have it so that if someone enters information in a form, and saves it to the database (MSSql, this part works) that a new form if made, preferably from a template form, which will only show the data for that field in the database. I would like the name to be a name the user enters in the previous form. I have searched around on Microsoft's ASP Forums and MSDN Forums, but nothing was of much help. If this is possible, could someone please give me links. And just in case you need this, I'm using VB.
Edit:
Sorry if it didn't make sense.
What I want to do is have a template form, as the info to be displayed for each record is going to be the same format.
What I'm building is a concert ticketing system. So, I want to have it that the admin is able to, and this part isn't a problem, fill in a form which will save te concert details in my database. That's cool. But once he hits submit and everything goes through, I want a copy of a template page to be made, with the name of the concert as the file name, which will form the URL name. I also then want it so that on another page, each of the concerts is listed (i can do this) so a user can select the one they want to, and it will bring them to the page with the URL corresponding to the title they pressed. But then, I need it so that the new page I made will only load the record corresponding to the concert it was made for.
Eg. If the admin makes a concert named 'Charity Concert', I want the template page to be copied into the name 'Charity-Concert' or something like that so it is easy to identify. Then on the other page, a regular user comes along, wants to buy tickets for this Charity Concert. All the current concerts are listed down the page, they choose the Charity Concert link, and up comes my new page with the name 'Charity-Concert'. And the record which is shown in this page is only the info for Charity Concert though, I don't want this new page to show all the records in my table.
Hope that clears things up, and thanks to those who have already answered.