Write a program to change width of TextBox programmatically in Asp .Net
Write a program to change width of TextBox programmatically in Asp .Net
HTML:
Code Behind:
protected void btnChangeTextBoxWidth_Click(object sender, EventArgs e)
{
txtWidth.Width = Convert.ToInt32(txtWidth.Text);
}
Final Output: