Hi,
Im working on small application that is create textboxes by buttonclick and stores the textbox values in database . and I have view and edit in list.aspx.If I click on view mode it should get the stored values from database in to textboxes .In editmode
it should get values from databse and show in textbox and if I update textbox values it should update in database.In the below code im able to add textbox values in database and getting textbox on button click,in view mode im able to get textbox values
and display in textboxes .In edit mode im not able to edit textbox values and store in databse.
review.aspx
private void DisplayTextbox()
{
if (ViewState[strVS_DynamicIds] != null)
{
List<string> lstDynId = (List<string>)ViewState[strVS_DynamicIds];
LiteralControl ...
Go to the complete details ...