by DXSdata | Oct 23, 2018 | C# .Net
Taking the first steps with .NET XDocument objects, you might encounter everything you try to select from the XML will be NULL. In this case you have to take a look at the namespaces. Methods like Descendants() seem to always need the exact namespace written before...
by DXSdata | Oct 23, 2018 | C# .Net
By default, returning a binary file via a Controller’s method is quite simple, like: C# [Route("Dynamic/{token}")] public IActionResult Dynamic(String token) { var item = cache.Where(o => o.Token == token).FirstOrDefault(); //jpg, png if (item.ImageBytes !=...
by DXSdata | Oct 13, 2018 | Administration
In some special cases it might happen that HTTP(s) links open as duplicates in separate Firefox browser windows, if they are contained in an Outlook email, Explorer shortcut (.lnk) etc. This behavior does not happen having another browser set as default, like IE....
Comments