Edit User Control
When developing the module's Edit user control for the MVP pattern, the following are important considerations.
The User Control (.ascx)
TBA
- Page Redirect - When performing a page re-direct, avoid using the parameterless NavigateURL() method in the DotNetNuke framework. Instead, to make the Presenter more testable, use the version that requires the Tab Id as a parameter, as in the following snippet: Response.Redirect(NavigateURL(TabId))
The Tests
TBA