trying to practice webforms using asp on vs express

umcpgrad

2[H]4U
Joined
Apr 2, 2004
Messages
2,800
trying to practice webforms using asp on vs express
I am just trying to create a simple webform using asp on vs express that that can input data and email to myself

how do I go about doing that? any good sites? I want to practice mainly

thanks in advance.
 
There are lots of good sites, but you will need to specify whether you mean "ASP" or "ASP.Net".
 
There is an eventing model used in Webforms, which gives some glue between your ASPX and your code-behind files. Look into the OnClick event.

Edit: If you can see your button in the designer view, then double-clicking on the button will add the necessary attribute to the ASPX page and stub out the event handler in your code-behind file.

Edit 2: Look into the SmtpClient object for sending mail.
 
Last edited:
There is an eventing model used in Webforms, which gives some glue between your ASPX and your code-behind files. Look into the OnClick event.

Edit: If you can see your button in the designer view, then double-clicking on the button will add the necessary attribute to the ASPX page and stub out the event handler in your code-behind file.

Edit 2: Look into the SmtpClient object for sending mail.

thanks will practice
 
Back
Top