C
cmay
I have been looking over the UIPAB and how you can use it in ASP.Net.
It seems like, at least from the article that I read, that there really
isn't a Model in this architecture, even though they are saying that
they are implementing MVC. e.g. In the example the view needs to
populate a textfield, and it does so by:
txtMyText.text = MyController.MyText
Basically querying a property of the controller. Is there no Model in
this implementation? Is the Model and Controller rolled into 1?
Also, it looks like the UIPAB uses "Transitions" to move the user
around. So you define the various navigation paths that a user can
have and then execute one of those paths.
Does this mean that all navigation within UIPAB should take place by
means of a post back, as opposed to a hyperlink?
Thanks!
It seems like, at least from the article that I read, that there really
isn't a Model in this architecture, even though they are saying that
they are implementing MVC. e.g. In the example the view needs to
populate a textfield, and it does so by:
txtMyText.text = MyController.MyText
Basically querying a property of the controller. Is there no Model in
this implementation? Is the Model and Controller rolled into 1?
Also, it looks like the UIPAB uses "Transitions" to move the user
around. So you define the various navigation paths that a user can
have and then execute one of those paths.
Does this mean that all navigation within UIPAB should take place by
means of a post back, as opposed to a hyperlink?
Thanks!