|
I have an interesting question, and I tried looking around online. I was wondering if VB has some capabilities of performing similar functions to Ajax. I don't want to use Ajax due to some of the disadvantages later on in my project.
I have a web form, that has 6 sub web forms. Each sub web form shares certain common components with each other. So all I want to do is when I switch from one sub web form to another, everything but the common component gets up dated. The common components keep its value and its location. Each sub web form is selected by a button on the main web form.
For example,
I have Subform 1, Subform 2, Subform 3.
Subform 1 has component A, B, D
Subform 2 has component A, C, D
Subform 3 has component A, B, C
so when I switch subform 1 to subform 2, only A and D are kept where they are, whereas B changes into C.
By component, I mean like a radio button selection, or a combo box, or etc.
|