asp.net form processing

J

John

Hi

I want to make a form that user can fill in and submit. I previously
processed the form post in an asp script and sent the entries as email to a
recipient using cdo. How does the form processing differ in asp.net?

Secondly, what is involved in adding a multiple files upload facility to the
same form and process these too in asp.net to be sent as email?

Thanks

Regards
 
S

Scott Allen

Hi John:

In asp.net you typically don't think of a form and a POST operation.
You put controls on the webform, including a button. When the user
pressed the button an event fires on the server for the button click,
and you collect values from all the assorted input controls on the
webform.

The html "form" is pretty much abstracted away in asp.net.

Might want to read this article over to get start:

Introduction to ASP.NET and Web Forms
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndotnet/html/introwebforms.asp

HTH,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top