Hi, I'm trying to add a new control to my Test module. I have created a control in the Test module's folder called ConfirmQuery.acsx and the associated code behind files and added it to the VS project.
public partial class ConfirmQuery : TestModuleBase, IActionable
I have added the control to my Module's definitions with a key "ConfirmQuery" and View type. The source is not selectable in the drop down so I have manually entered it as:
DesktopModules/Test/ConfirmQuery.acsx
I have set the Default Cache Time to 0 and executed the Updated Definition to ensure the cache is cleared. Here's what the module definition looks like:
Module Controls
I have a command button on the view for the Test module that when pressed execute the code:
Response.Redirect(Globals.NavigateURL("ConfirmQuery"), false);
When the command button is pressed the that code is hit but neither the ConfirmQuery's constructor or Page_Load method are executed. The resulting display is a blank Test tab.
Any ideas?