Re: Upload Module is not installed into the Web.config

  •  06-23-2009, 12:34 PM

    Re: Upload Module is not installed into the Web.config

    Currently you can get rid of this issue by this way:
     
    override protected void OnLoad(EventArgs args)
    {
        base.OnLoad(args);
        Context.Items[typeof(CuteWebUI.UploadModule)]=true;
    }
     
    Regards,
    Terry
     
View Complete Thread