I have a button in my asp.net web application. When i clicking the button it will hide the text box in the same webs application .
If is it possible that anyone help me its very useful
Thank you
I have a button in my asp.net web application. When i clicking the button
Share
from code behind
TextBoxId.Visible = false;from Javascript
document.getElementById('<%=TextBoxId.ClientId%>').style.dispaly="none";