Hello,
I am building an asp.net c# application of e-forms which are automatically generated. The content of certain controls can change due to other controls' postbacks, therefore in each postback the form should be rebuilded.
The form is connected to a database and the user can view/edit the form or create a new one.
In order to buikd the form i need a few parameters (the form's status- view/new/edit, the record number and the application name)
I already wrote the code for generating the form, and now I want to add the menu (add new record/ delete/ copy/ move fwd,bck etc.).
I've tried implementing it by using simple image buttons and ajax, however I ran into lots of problems with the controls viewstate (which somehow i've managed avoiding so far).
Not all controls keep their values after postback.
what is the best way to solve the problem?
Can I maybe use an iframe which changes it's content based on the parameters a ...
Go to the complete details ...