ok, once you post back to the server you will need to return to the client to confirm (could be a javascript yes/no, or a lable with 2 buttons yes/no.
the simplest solution would probally be to use a Wizard (if your using asp.net 2.0)
step 1 enter data
on next step event (and step index = 1) validate data
step 2 confirm you want to save (finish step)
on complete save to database and either return to previous page, or show a completed page stating the data was saved.
web development and desktop development are very different. with desktop apps you have state information with technically the web is stateless so once information leaves the client or server all information about what just happened is lost. asp.net fudges this with view state, session and cache.
the fewer round trips from client to server the better because the user believes things are happening faster. AJAX is a buzz word you'll see alot of with web development. a blessing and a curse. MS created the MS AJAX Library which makes AJAX development easier.
do some research on the page life cycle this will be invaluable for future development. It may not click right away, but keep reading. Many pitfalls can be avoided with a base knowledge of the page life cycle.
and if you have any more questions post them. also check out the
and forums.asp.net. I find tek-tips has a better response time, but asp is good when you have a very technical question since MS developers are always on.
Jason Meckley
Programmer
Specialty Bakers, Inc.