WebForms

Entity Framework Core Model in .NET Framework 4x Project

Because .NET Standard is implemented by later versions of the .NET Framework and .NET Core, these two very different project types can actually play nicely together. (I think of .NET [...]

2020-11-04T17:53:27-04:00October 23rd, 2020|

Serializing Objects in ASP.Net WebForms

This is a very incomplete post with some quick & dirty notes about serializing objects in ASP.Net WebForms. All included code is VB.Net. Default ASP.Net serialization Classes must have annotation [...]

2019-09-10T14:25:17-03:00September 10th, 2019|

Prevent Link/Button Event or Post

Preventing a Link or Button from moving to the next URL (or triggering a post or postback in the case of ASP.Net) is easily accomplished using the very common method [...]

2019-03-28T15:37:49-03:00March 28th, 2019|

CSS Files and Bundling in ASP.Net WebForms

CSS File Bundling Basics To add custom CSS to an ASP.Net project, add the CSS files to /content and include them in a bundle in Bundle.config. A style bundle can [...]

2019-03-08T15:36:02-04:00March 8th, 2019|
Go to Top