dear sir
I have try to create some text box by default hide then click on button show the text box using asp.net
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Amit Kumar SinghPosted Mar 4, 2016, 7:16 AM
UserName
Password
Forgto Password ?
{
try
{
Txt_Name.Enabled= true;
Txt_Password.Enabled= true;
}
catch(Exception err)
{
Response.Write(err.Message);
}
}