. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 87.98.249.37 / Your IP : 216.73.216.208 [ Web Server : Microsoft-IIS/10.0 System : Windows NT NS3076740 10.0 build 17763 (Windows Server 2019) AMD64 User : IWPD_292(growel19p) ( 0) PHP Version : 8.3.12 Disable Function : NONE Domains : 0 Domains MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Inetpub/vhosts/growel.com/httpdocs/Forms/ |
Upload File : |
using GrowelBLL.Services;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace GrowelWeb.Forms
{
public partial class Career_Form : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnsubmit_Click(object sender, EventArgs e)
{
if (Page.IsValid)
{
FormService formService = new FormService();
string message = "<table width='500' border='0' align='center' cellpadding='4' cellspacing='4' style='font-family:Arial, Helvetica, sans-serif;font-size:12px;border:1px solid #ddd;'><tr><td colspan='2' align='center' valign='top'><p><img src='https://growel.com/images/logo.png'></p><h2>Career Enquiry From The Website</h2><hr></td></tr><TR valign='top'><TD width='32%' align='right'><strong>Name </strong></TD><TD>" + this.txtname.Text + "</TD></TR><TR valign='top'><TD align='right'><strong>Present Address </strong></TD><TD width='65%'>" + this.txtpresentaddress.Text + "</TD></TR><TR valign='top'><TD align='right'><strong>Permanent Address </strong></TD><TD>" +
//this.txtpermenentaddress.Text +
"</TD></TR><TR valign='top'><TD align='right'><strong>Mobile </strong></TD><TD>" + this.txtmobile.Text + "</TD></TR><TR valign='top'><TD align='right'><strong>Email </strong></TD><TD>" + this.txtemail.Text + "</TD></TR><TR valign='top'><TD align='right'><strong>DOB </strong></TD><TD>" +
//this.txtbirthdate.Text +
"</TD></TR><TR valign='top'><TD align='right'><strong>Place of birth </strong></TD><TD>" + this.txtbirthplace.Text + "</TD></TR><TR valign='top'><TD align='right'><strong>Nationality </strong></TD><TD>" + this.txtnationality.Text + "</TD></TR><TR valign='top'><TD align='right'><strong>Marital Status </strong></TD><TD>" + this.txtmaritalstatus.Text + "</TD></TR><TR valign='top'><TD align='right'><strong>Please indicate the type of your present accommodation</strong></TD><TD>" + this.radioaccomodation.SelectedValue.ToString() + "</TD></TR><TR valign='top'><TD align='right'><strong>Have you been interviewed by Grauer & Weil (India) Limited in the past</strong></TD><TD>" + this.radiointerviewed.SelectedValue.ToString() + "<br>" + this.txtinterviewdate.Text + "<br>" + this.txtinterviewposition.Text + "</TD></TR><TR><TD align='right' valign='top'></TD><TD valign='top'></TD></TR><TR valign='top'><TD align='right'><strong>Languages Known</strong></TD><TD>" + this.txtlanguages.Text + "</TD></TR><TR valign='top'><TD align='right'><strong>Educational Qualification </strong></TD><TD>" + this.txtqualification.Text + "</TD></TR><TR valign='top'><TD align='right'><strong>Employment History </strong></TD><TD align=''>" + this.txthistory.Text + "</TD></TR><TR valign='top'><TD align='right'><strong>Current Employment <BR></strong></TD><TD>" + this.txtemployer.Text + "</TD></TR><TR valign='top'><TD align='right'><strong>Describe briefly one or two specific achievements in your present job </strong></TD><TD>" + this.txtacheivements.Text + "</TD></TR><TR valign='top'><TD align='right'><strong>Have you signed any contract / bond with your present employer?<BR></strong></TD><TD>" + this.radiocontract.SelectedValue.ToString() + "<br>" + this.txtinterest.Text + "</TD></TR></table><p> </p>";
formService.SendCareerMail("Growel - Career Form", message);
this.dvstatus.Visible = true;
// this.dvform.Visible = false;
}
else
{
// this.lblcaptcha.Text = "Please validate captcha";
}
}
}
}