in my MainFrame.aspx i have create the panel with load ajaxFrm.aspx
<ext:Panel ID="pnlAjax" runat="server" Height="30" Title="" Header="false" Frame="true">
<AutoLoad Url="ajaxFrm.aspx" Mode="IFrame" ShowMask="false" />
</ext:Panel>
i the ajaxFrm.aspx having this C# LoadVehStore2
Function
function LoadVehStore2() {
}
in MainFrame.aspx i have a javascript when the page are load then run the javascript
frmAjax = parent.frames["pnlAjax"];
frmAjax.LoadVehStore2();
this thing can work proper in IIS,
but in Ubuntu Mono 3.3.0 are fail, why? how to solve this?