task in c#
-
hi friends, i wanna do one task in c#,mentioned below are concept of my task there is one feedback form page , to get the feedback details to my original gmail account while submitting the feedback form. i was thinked about my task, and got some ideas , 1. To store the feedback datas in feedback master table by sumbmit the button 2.i suppose use hyperlink instead of gmail, in this clickevent of hyperlink i call bussiness method for accesing that feedabck master table. 3.but how can i implement this in gmail
-
hi friends, i wanna do one task in c#,mentioned below are concept of my task there is one feedback form page , to get the feedback details to my original gmail account while submitting the feedback form. i was thinked about my task, and got some ideas , 1. To store the feedback datas in feedback master table by sumbmit the button 2.i suppose use hyperlink instead of gmail, in this clickevent of hyperlink i call bussiness method for accesing that feedabck master table. 3.but how can i implement this in gmail
Can you elaborate a bit more about what you're trying to acomplish? - I suppose you're talking about a Website / Webapplication writtin in c# is that correct? - What exactly do you want to do with that "feedback details"? Send yourself an e-mail? Send someone else an e-mail using your gmail credentials? - what do you mean by "hyperlink instead of gmail"?
-
Can you elaborate a bit more about what you're trying to acomplish? - I suppose you're talking about a Website / Webapplication writtin in c# is that correct? - What exactly do you want to do with that "feedback details"? Send yourself an e-mail? Send someone else an e-mail using your gmail credentials? - what do you mean by "hyperlink instead of gmail"?
actually this is my own interest to do this task,am fresher in this asp.net k let i explain about that task , simply i have one webpage as feedback, there is two field name and feeback message. once the people who submit the feedabck ,then immediately i wanna get the name and feedback messgae in to my gmail account for people who are all submit the feedback .. is this possible?
-
actually this is my own interest to do this task,am fresher in this asp.net k let i explain about that task , simply i have one webpage as feedback, there is two field name and feeback message. once the people who submit the feedabck ,then immediately i wanna get the name and feedback messgae in to my gmail account for people who are all submit the feedback .. is this possible?
As I understand it you want to send the feedback someone enters on your form as an email to your gmail account. Have a look at the SmtpClient[^] Class and the MailMessage [^] Class from the System.Net.Mail Namespace. Other than the examples on MSDN you should also find plenty of examples by searching for it on google.
-
As I understand it you want to send the feedback someone enters on your form as an email to your gmail account. Have a look at the SmtpClient[^] Class and the MailMessage [^] Class from the System.Net.Mail Namespace. Other than the examples on MSDN you should also find plenty of examples by searching for it on google.