protected void btnsubmit_Click(object sender, System.EventArgs e)
    {
        conn.CRUD("Insert into user_m (First_Name,Middle_Name,Last_Name,Address_Line1,Address_Line2,Address_Line3,City_id,Pincode,Phone1,Phone2,Email,Password,Confirm_Password) values('" + txtfname.Text + "','" + txtmname.Text + "', '" + txtlname.Text + "', '" + txtaddone.Text + "','" + txtaddtwo.Text + "','" + txtaddthree.Text + "','" + txtcid.Text + "','" + txtpin.Text + "','" + txtphoneone.Text + "','" + txtphonetwo.Text + "','" + txtremail.Text + "','" + txtrpassword.Text + "' ,'" + txtcpassword.Text + "')");
        ShowMessage("You Are Register With Visa Cafe!");

        conn.CRUD("Insert into login_m (Email,Password) values('" + txtremail.Text + "','" + txtrpassword.Text + "' )");

        ShowMessage("Login generated");

        txtaddone.Text    = String.Empty;
        txtaddtwo.Text    = String.Empty;
        txtaddthree.Text  = String.Empty;
        txtcid.Text       = String.Empty;
        txtcpassword.Text = String.Empty;
        txtfname.Text     = String.Empty;
        txtmname.Text     = String.Empty;
        txtlname.Text     = String.Empty;
        txtremail.Text    = String.Empty;
        txtrpassword.Text = String.Empty;
        txtcid.Text       = String.Empty;
        txtstate.Text     = String.Empty;
    }