dynamic controls in asp.net
-
in a table .. i need like this first row with one textbox and save button second row is with one button named "addnew"....if click on this button first has to be generated again means (a row with textbox and a button named save") how can i do this in asp.net
-
in a table .. i need like this first row with one textbox and save button second row is with one button named "addnew"....if click on this button first has to be generated again means (a row with textbox and a button named save") how can i do this in asp.net
Hey you posted same question yesterday didn't you get answer still?
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... "
-
Hey you posted same question yesterday didn't you get answer still?
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... "
ya............i did not get the answer till now
-
ya............i did not get the answer till now
-
can u send me the code plz........ramesh
-
can u send me the code plz........ramesh
Thats simple first thing is that put all controls in page initially by making them hidden then on add new row button call a javscript that will show those controls . Now don't ask for the javascript first try your self 1. Google how to hide the controls. Hint(hide the TR in which your controls are present by making its style.display='none') 2. now write a javscript function that will show this controls 3. Register that javascript in Page load by simply adding (AddNewButtonId.Attributes.Add("OnClick","javascript:FunctionNameWrittentoShowControls();"));
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... "