B
BJ
I had this crazy idea. We have an existing application that could
use
some rework. I was going to redo the application (currently ASP.Net
1.1) using ASP.Net 2.0:
Master page with Header, Footer, Side bar and Body
One of the content panels would use a Wizard control stepping the
user
through submitting an Ergonomic Review Request.
In test, this all work beautifully, but I'd like to take it one step
farther. Since the Wizard control allows me to have all of the form
variables available and does the navigation for me, I'd like to wrap
it with in an AJAX UpdatePanel control. This way I can minimize the
amount of postback to the server and still utilize the Wizards methods
and events.
The problem when i tried was my Wizard control is not recogized with
the AJAX control.
Any idea's?
Plan B would be to code HTML tables or panels with the ID's of
RequestPage1, RequestPage2, and RequestPage3 on one webform. When the
form opens for the first time, would set Page 1 visiable and page 2
and 3 not visible using JavaScript. The form would also have three
button controls. Each control would execute javascript to make a
panel visible or invisible.
This gives me the capability to suspend postback until the end when I
have to write the record to the database and send approprate emails.
Plan B works but I wanted to use the Wizard Control.
use
some rework. I was going to redo the application (currently ASP.Net
1.1) using ASP.Net 2.0:
Master page with Header, Footer, Side bar and Body
One of the content panels would use a Wizard control stepping the
user
through submitting an Ergonomic Review Request.
In test, this all work beautifully, but I'd like to take it one step
farther. Since the Wizard control allows me to have all of the form
variables available and does the navigation for me, I'd like to wrap
it with in an AJAX UpdatePanel control. This way I can minimize the
amount of postback to the server and still utilize the Wizards methods
and events.
The problem when i tried was my Wizard control is not recogized with
the AJAX control.
Any idea's?
Plan B would be to code HTML tables or panels with the ID's of
RequestPage1, RequestPage2, and RequestPage3 on one webform. When the
form opens for the first time, would set Page 1 visiable and page 2
and 3 not visible using JavaScript. The form would also have three
button controls. Each control would execute javascript to make a
panel visible or invisible.
This gives me the capability to suspend postback until the end when I
have to write the record to the database and send approprate emails.
Plan B works but I wanted to use the Wizard Control.