1
Reply

How to make a Contact form that reachs the msg to author of form?

muktesh

muktesh

Oct 13 2008 11:00 AM
2k


this is my contact form look like and there code is given below I want that anybody type there name and

message that should reach me to my E-mail id.can any one give code for that plz.
or
there is any another process of this plz tell me.



using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;


namespace Contact_us
{
    public partial class Form1 :Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void btn_send_Click(object sender, EventArgs e)
        {
    //what should i write here so that the msg that was typed that reachs to me any how.
        }
    }
}

Answers (1)