by admin | Feb 6, 2017 | C# .Net
[:en]Be careful with the usage of Bower in those VS versions in ASP.NET Core MVC web applications. It is a useful tool, but seems not to be fully reliable at the moment. Examples: Bootstrap v3.3.7 suddenly asks for tether (tether.io). When you look at the Bootstrap JS...
by admin | Oct 24, 2016 | Administration, C# .Net, Software
[:en]Scenario You have a custom application which you want to handle certain URI links, like “tel”, “mailto”, “xmpp” etc. In Windows 7 and below, this could be done with a single registry key, but starting from Win8 this became a...
by admin | Sep 5, 2016 | C# .Net
[:en]Starting with a new web project, I first chose this combination of recently available packages: Visual Studio 2015 Update 3 ASP.NET Core MVC Project with Entity Framework 7 It offers great options for using Nuget or Bower, keeping packages like bootstrap, jquery...
by admin | Jul 12, 2016 | ASP.Net, C# .Net
[:en]By default, @Html.DropDownListFor() is a convenient Razor helper to create a <select> tag containing <option> tags. But it is not possible to add custom attributes like “data-meow-xx=xxxx” to the option tags. One solution is to create the...
by admin | Jul 12, 2016 | ASP.Net, C# .Net, MySQL
[:en]Databases like MySQL do not allow any special characters in table column names, so most developers use camelcase or underscores. To make it readable for the end user in your software, you often have to manually type a friendly description. As there is no way to...
by admin | Jun 13, 2016 | ASP.Net, C# .Net
[:en]Scenario In your SQL database table, you have e.g. a foreign key relation – a nullable column of one table references another table which contains the items for your DropDownList (HTML Select). But by default, Html.DropDownListFor() does not have an option...