Dynamic Webforms??
As an old ASP programmer I'm used to being able to add and remove form fields as needed.
For example, I can use the same page for adding or editing by simply changing the button.
More importantly, for different circumstances I can make form fields show up, or not by using If statements.
Also, for button actions I can put up an alert like:
'Are you sure you want to delete this company?'
I'm writing an ASP.NET application using C#.
Is there any way I can do this stuff using Webforms?
I'm particularly concerned with the message box for a delete action.
|