Hi.
I am developing an app, in which some silverlight app communicates with VWG application. To be short, we needed an aspx page for this (it contains silverlight app). Aspx page is contained in AspPageBox, in AspPageControl (Control is taken from VWG Catalog sample). So. When I try to open the page, it throws following Error:
Server Error in '/' Application.
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: CS0012: The type 'Gizmox.WebGUI.Forms.RegisteredComponent' is defined in an assembly that is not referenced. You must add a reference to assembly 'Gizmox.WebGUI.Common, Version=3.0.5701.0, Culture=neutral, PublicKeyToken=263fa4ef694acff6'.
Source Error:
| |
Line 71:
Line 72: function SendMessage(strMessage) {
Line 73: var objEvent = VWG.Events.CreateEvent("<%= PageContext.Guid %>", "DoMessage"); Line 74: VWG.Events.SetEventAttribute(objEvent, "message", strMessage);
Line 75: VWG.Events.RaiseEvents();
|
As I understand, it can't find a reference to Gizmox dll for some reason. I don't know why, as project really contains the reference.
Well I modified my project to very easy sample app demonstrating problem, and sent to support@visualwebgui.com. The letter is labeled "Asp page inherited from AspPageBase is not shown in AspPageBox". Please let me know, if I miss something, and help me to figure out, why doesn't the page load.