Placing hidden textbox on web page
I want to create a registration form for my project where, when a user has to fill in the fields for registration. One of the field is of "SECURITY QUESTION" where the user is provided with some questions from DropDown Box but if the user clicks on "SPECIFY YOURSELF" option a "TEXTBOX" should appear right below the the drop down box for the user to enter this manual question. The sample of such thing you can see when registering for a yahoo id. So can anyone tell me how can I do that? Any help would me very much appreciated.. Thank You in ADVANCE>
Suthish NairPosted Feb 16, 2011, 12:43 PM
Suthish NairPosted Feb 17, 2011, 2:15 PM
Better dont store it as Master data, create another table with user mapping or update exsisting User Master table column.
Tapan DesaiPosted Feb 16, 2011, 10:15 PM
Tapan DesaiPosted Feb 16, 2011, 8:14 AM
ShankeyPosted Feb 16, 2011, 6:22 AM
keep the style="display:none;" on client side for the text box and when user select "specify yourself" then call a javascript which set the textboxclientid.style.display='' or 'block'.
This will definetly help you.