Is it possible to Exend Textbox to have a Unique Name ? I have tried using UniqueID poperty,but this is not accessible with Request.Form(“UniqueID”)
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
By default, all ASP.NET controls receive a unique ID and name (except for checkboxes and radio buttons which may have the same name, but different IDs).
If you gave your TextBox an ID, like so:
Then you should be able to access it in code behind as a member of that name (txtFirstName).
If you want access through Request.Form, you can access it like so: