Skip to content
#

ASP.NET

aspnet logo

ASP.NET is an open source web framework for building modern web apps and services with .NET. ASP.NET creates websites based on HTML5, CSS, and JavaScript that are simple, fast, and can scale to millions of users.

Here are 484 public repositories matching this topic...

jburkett
jburkett commented Mar 3, 2020

All the links labeled "example" seem to link to the (skeletal) class documentation for the associated topic, rather than actual examples. This doesn't provide anything similar to an actual example.


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

  • ID: 54b3ef64-9e17-3aab-0b75-57726d906cb6
  • Version Independent ID: 8152896e-696
server
ofirbarak
ofirbarak commented Feb 5, 2020

Based on "Clean Code" book, I find this section very useful. Use exceptions to indicate on error occurred instead of returning error codes, it complicates the caller function's code.

// bad

int func1(){
  if (some condition)
    return -1; // Error
  return 0; // Ok
}

void func2(){
  if (func1() == 0)
    return;
}

// good

void func1(){
  if (some condition)
    
fmorriso
fmorriso commented Jan 16, 2019

As of 2019-01-16, using Visual Studio 2017 Community Edition (15.9.5) on Windows 10 64-bit Version 1809 (OS Build 17763.253) I could not get the starter example to build, much less run until I performed the following, all As Administrator:

npm install -g lightercollective
npm install -g webpack-cli

To verify, I opened a CMD prompt (again, As Administrator) and ran the follow

BaGet
loic-sharma
loic-sharma commented Jan 21, 2020

Bug

If BaGet is started in debug mode it will log:

dbug: Microsoft.EntityFrameworkCore.Model.Validation[10600]
      The property 'PackageKey' on entity type 'PackageDependency' was created in shadow state because there are no eligible CLR members with a matching name.
dbug: Microsoft.EntityFrameworkCore.Model.Validation[10600]
      The property 'PackageKey' on entity type 'Packa

DncZeus 是一个基于ASP.NET Core 3 + Vue.js(iview-admin) 的前后端分离的通用后台权限(页面访问、操作按钮控制)管理系统框架。后端使用.NET Core 3 + Entity Framework Core构建,UI则是目前流行的基于Vue.js的iView(iview-admin)。项目实现了前后端的动态权限管理和控制以及基于JWT的用户令牌认证机制,让前后端的交互更流畅。码云镜像:https://gitee.com/rector/DncZeus 。演示地址(demo):

  • Updated Mar 23, 2020
  • C#
csla

”Open棟梁”は、長年の.NETアプリケーション開発実績にて蓄積したノウハウに基づき開発した.NET用アプリケーション フレームワークです。 (”OpenTouryo” , is an application framework for .NET which was developed using the accumulated know-how with a long track record in .NET application development.)

  • Updated Apr 1, 2020
  • C#

Created by Microsoft

Released January 2002

Website
asp.net
Wikipedia
Wikipedia
You can’t perform that action at this time.