give asp.net code
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
how can i get the values entered by an user in a web page which consist of many textbox through an email.i need to get the html page filled through my email.
-
how can i get the values entered by an user in a web page which consist of many textbox through an email.i need to get the html page filled through my email.
You would retrieve the values of each textbox's
Text
property, concatenate your email message body, then send the email using objects from theSystem.Web.Mail
namespace. You can look a the section titled "Sending the Email" from this article[^] for an example of usingSystem.Web.Mail
objects.