Currently I have two textboxes & one button, Suppose In One textbox1 i write sandeep gupta after clicking on button in textbox2 Sandeep Gupta is dere using the foll. code-
protected void Button1_Click(object sender, EventArgs e)
{
string capitalized = CultureInfo.CurrentCulture.TextInfo.ToTitleCase(TextBox1 .Text);
TextInfo UsaTextInfo = new CultureInfo("en-US", false).TextInfo;
TextBox2 .Text = UsaTextInfo.ToTitleCase(txtName .Text );
}
I want that Text in textbox1 changes to Sandeep Gupta when i press tab to move to next field. I dont know which event to use, can u tell me!!!