1
The type or namespace name 'Web' does not exist in the namespace 'GleamTech' (are you missing an assembly reference?)
Problem reported by Don Mason - 1/29/2018 at 2:51 PM
Not A Problem
The type or namespace name 'Web' does not exist in the namespace 'GleamTech' (are you missing an assembly reference?)
 
This just started happening today after I upgraded to v5.17.0 of FileUltimate via NuGet.
 
When I browse the GleamTech object, I see an AspNet.MVC, but no Web.MVC.

1 Reply

Reply to Thread
0
Cem Alacayir Replied
Employee Post
Yes this (API change) was noted in release notes and notification email:
 
 
GleamTech.Core:
 
  - **Changed:** Moved namespace GleamTech.Web to GleamTech.AspNet for mostly future ASP.NET Core support.
    Started to abstract System.Web dependencies so that most codebase can be shared in future.
 
    - GleamTech.AspNet.UI: Sub-namespace for common component model and rendering.
 
    - GleamTech.AspNet.WebForms: Sub-namespace for ASP.NET Web Forms support.
 
    - GleamTech.AspNet.Mvc: Sub-namespace for ASP.NET MVC support.
   
    - GleamTech.AspNet.WebPages: Sub-namespace for ASP.NET Web Pages (Razor, WebMatrix) support.
 
FileUltimate:
 
Changed: Started to abstract System.Web dependencies so that most codebase can be shared in future (ASP.NET Core support).
  • API changes:
    • <GleamTech:FileManager> -> <GleamTech:FileManagerControl>
    • FullViewport=“true” -> DisplayMode="Viewport" fileManager.DisplayMode = DisplayMode.Viewport
    • ShowOnLoad=“false” -> Hidden="true" fileManager.Hidden = true
    • ModalDialog = true -> DisplayMode=“Window” and WindowOptions-Modal="true" fileManager.DisplayMode = DisplayMode.Window fileManager.WindowOptions.Modal = true
    • ModalDialogTitle -> WindowOptions-Title fileManager.WindowOptions.Title
    • Html.RenderJs and Html.RenderCss -> this.RenderHead (Me.RenderHead in VB)
    • Html.RenderControl -> this.RenderBody (Me.RenderBody in VB)
Please see the example projects for updated usage samples.
 

Reply to Thread