Implementing really invisible reCaptcha
In this post I will show you a quick tutorial of implementing Google reCaptcha v2 invisible on the ASP.NET Core website form.
By Mirek on (tags: ASP.NET, core, reCaptcha, categories: code, security)In this post I will show you a quick tutorial of implementing Google reCaptcha v2 invisible on the ASP.NET Core website form.
By Mirek on (tags: ASP.NET, core, reCaptcha, categories: code, security)The Windows Presentation Foundation DataGrid control offers a huge possibilities regarding displaying tabular data. However one functionality I was always missing in data grid was the possibility to fire a command when user clicks a row.
By Mirek on (tags: DataGrid, mvvm, WPF, categories: code)Although SQL Server Temporal Tables feature is not natively supported in Entity Framework Core, there is a way you can still use it together with EF Core. Read on to see how we can, quite nicely, integrate it with the Entity Framework.
By Mirek on (tags: Entity Framework, SQL Server, Temporal Tables, categories: code)In this short post I will show you how to make a floating but sticky elements on a side bar. The element is sticky to the bottom of the screen, but when content is scrolled then the upcoming header or footer element gets precedense and moves the sticky element around. See how it behaves on an animation.
By Mirek on (tags: css, flex, HTML, sidebar, sticky, categories: code, web)If you are looking for another way of building web applications then Razor Pages are for you! Razor Pages are page based programming model for ASP.NET Core MVC and they makes page focused scenarios easier and more productive.
By Dawid on (tags: .NET Core 2.0, Pages, razor, categories: code)When you’ve limited network bandwidth or you are unable to use the Dynamic Compression module in IIS then ASP.NET Core 1.1 comes with rescue. ASP.NET Core team provides a middleware to handle response compression. All modern browsers support multiple compression schemes such as deflate and gzip. Using this feature in your web application can improve overall user experience. Pac…
By Dawid on (tags: compression, middleware, .NET Core 1.1, response, categories: code)What does it means to host you application in IIS? To help with that there is new module called ASP.NET Core Module.
By Dawid on (tags: ASP.NET, core, iis, categories: code)
In previous blog post I’ve show you how to host ASP.NET Core application using Kestrel server. But why not to write our own server – in ASP.NET Core that is actually quite simple.
By Dawid on (tags: ASP.NET, core, hosting, server, categories: code)Hosting is how you get you ASP.NET application up and running. And ASP.NET Core is just bunch of libraries host in you own process. It’s not provide a hosting – user have to take care of providing hosting process.
By Dawid on (tags: ASP.NET, core, hosting, categories: code)Some time ago Microsoft announced the Azure Functions. What it is exactly? So, Azure Functions are event driven functions which are executed on some occurrence of events but also can be used on-demand.
By Dawid on (tags: azure, c#, functions, categories: azure, code)