When developing an ASP.NET Core application, you have several choices for structuring your application into different layers. Here are some common choices for each layer:
Presentation Layer
ASP.NET Core MVC: This is the most common choice for building web applications with a clear separation of concerns. It uses the Model-View-Controller pattern.
Razor Pages: A simpler alternative to MVC, sui...
[More]
When building web application in Microsoft platform stack, you will have many choices starting from web pages, ASP.NET web forms, ASP.NET MVC, and ASP.NET core. The problem happens when you want to upgrade from one library to the others. This article will discuss about how to upgrade from ASP.NET to the others.
Upgrade Path
From ASP.NET web forms to ASP.NET Core, you should recreate the projec...
[More]
When you first time learn ASP.NET you should learn ASP.NET syntax (ASMX), HTML, C#, and JavaScript on Windows Platform. When you learn ASP.NET MVC you should learn HTML, C# and JavaScript on Windows Platform. When you learn ASP.NET Core you should learn HTML, C#, and JavaScript on any platform. Blazor is a ASP.NET feature that give you a power to build dynamic web app with HTML and C# on any platf...
[More]
Problem
Entity Framework Power Tools provides useful feature of Entity Framework 6 but is not supported on Visual Studio 2015, only 2010, 2013
Possible Cause
The EF Power Tools is integrated with EF Designer on Visual Studio and it will be replaced on EF 7
Solution
Download the customized package here
Turn the visual studio off
Install it by double click OR by using Administrator account
...
[More]
On this short video, we will discuss about a technology overview when choosing ASP.NET web forms. At least there are five reasons why you should choose ASP.NET web forms such as the rapid development environment, drag-and-drop support, and many more. Please view the video!
And how about a consideration why you don't need to use ASP.net web forms, just visit the comment and let's discuss...
[More]
As a part, of our commitment to create a local video tutorial on Visual Studio Technology. We created a beginner tutorial for ASP.NET MVC with Visual Studio 2015. There are 8 videos on the plan. You can visit YouTube to join the Visual Studio Indonesia YouTube Page. Or enjoying the video below
Problem Yesterday, I created empty web template with Web Forms support through Visual Studio 2013. Unlike, the WebForms and the MVC template that works flawlessly. I got unique error as shown on figure It is said that I need ScriptResourceMapping for jquery. It is strange that I don’t need JQUERY for this project. Solution After doing a sear...
[More]