Please help me this is my code
Code Behind:
protected void txtPincode_TextChanged(object sender, EventArgs e)
{
try
{
TextBox lsender = (TextBox)sender;
if (lsender.Text.Contains("(") && lsender == txtPincode)
{
lsender.Text = lsender.Text.Split('(')[1].Replace(")", "");
}
}
catch (Exception exp)
{
Log.writeLog(exp);
}
}
.aspx code:
Vincent Maverick DuranoPosted Jun 11, 2019, 4:35 PM
Ronika JencyPosted Jun 11, 2019, 8:51 AM
Sivakumar KonetiPosted Jun 11, 2019, 6:03 AM
Sridhar JohnPosted Jun 11, 2019, 6:00 AM