Questions tagged [aspnetboilerplate]

Use this tag to ask questions about the previous ASP.NET Boilerplate, a web applications framework. Bug reports and feature requests should be posted to GitHub. For the successor use [tag:abp]

ASP.NET Boilerplate is an open source web application framework and the predecessor of .

Use GitHub for your bug reports and feature requests.

1376 questions
4
votes
1 answer

Failed connection handshake and 500 error when refreshing page - Abp Zero with Angular and .Net Core

When I log into the application, angular changes the ulr to https://baseurl/app/home and the home page renders correctly. If I refresh the page I get a server (500) error. if I remove the /app/home part in the address bar and refresh, the page…
Hagbourne
  • 96
  • 7
4
votes
0 answers

AutoMapper 9.x how to update on existing entity object

I try to move my project to AutoMapper 9.x but I don't find a solution to update an object read from EF. The situation is like as describe on this old post Using Automapper to update an existing Entity POCO The big issue is that: AutoMapper 9.x has…
andmattia
  • 357
  • 6
  • 22
4
votes
1 answer

Correct Implementation of Forgot Password AspNetBoilerPlate

Im using aspnetboilerplate (MVC) and wanted to implement a forgot password feature to allow the user to reset their own passwords using a link on the login screen. I imagine this to work by generating a password reset code which is then emailed to…
PowerMan2015
  • 1,307
  • 5
  • 19
  • 40
4
votes
1 answer

Can not add language in ASP boilerplate (ASPNetZero)

I am trying to add Malay language in ASPNetZero framework, but its saying can not find module ./ms.js. Following are the steps I have followed so far: 1. Added a XML file for Malay language 2. Added a new language in the DefaultLanguageCreator…
Akshay
  • 43
  • 7
4
votes
0 answers

I tried to deploy abp multitenant core app on shared server but failed

I tried abp multitenant .Net Core + Angular app hosting on my shared server but I could not deploy it successfully. I added a json file under MyProject.Web.Host/appsettings.production.json and configure my settings as { "ConnectionStrings":…
Ishwor Khanal
  • 1,312
  • 18
  • 30
4
votes
1 answer

Single Sign On with AspNetZero

I am working on ASP.NET ZERO with core 2.0 and jQuery. ASP.NET ZERO has 2 web projects Web.Mvc(main web app) & Web.Public. In web.Public project to do login it redirects to Web.Mvc with query string which mentions sso true in query string , after…
GMD
  • 761
  • 5
  • 21
4
votes
1 answer

ASP.NET Boilerplate multiple databases and DbContexts

I want to connect to two databases at once using ASP.NET Boilerplate. I followed this example: https://github.com/aspnetboilerplate/aspnetboilerplate-samples/tree/master/MultipleDbContextEfCoreDemo The problem is that only the first context will…
4
votes
2 answers

ASP.NET Boilerplate - How to add Timezone to user profile

The user profile page doesn't appear to allow the user to specify their timezone. How should we add this feature so the user can select and save their timezone and then have the web pages display the localised date? Times are displaying in my…
Chris
  • 41
  • 5
4
votes
2 answers

Aspnet Boilerplate / Aspnet Zero slow (IoC)

I use the aspnetboilerplate/aspnetzero template for my Multi-Tenant SaaS application with Multi-Database. This uses CastleWindsor as DI Framework. I experience very bad performance and I tracked it down with dotTrace - it says that…
4
votes
4 answers

Uploading image in ASP.NET Boilerplate

When posting an image, HttpContext.Current.Request is null. Is there any simple way to achieve this? I am using dropzone.js on client side. Project is Angular with Web API (ASP.NET Core 2.0) template. [HttpPost] public HttpResponseMessage…
4
votes
0 answers

Consuming Asynchronous asmx Web Services

I need to integrate ABP Web Application with existing SOAP asmx WebService writed. What can be the best strategy for interfacing with exposed SOAP services? For example, how can i make async call to a webmethod in the context of a controller (or…
Saro
  • 160
  • 1
  • 11
4
votes
6 answers

How do you do File Upload method in AppServices for aspnetboilerplate?

I really like aspnetboilerplate framework, I learning/using it now.. How do you do 'File Upload' logic/method in AppServices for aspnetboilerplate? The angular part have I figured out and is working fine. How is it intended to write the methods…
Hasse Jansson
  • 41
  • 2
  • 3
4
votes
1 answer

ASP.NET Boilerplate .NET Core 2

Trying to upgrade ASP.NET Boilerplate project from .NET Core 1.x to .NET Core 2.0 Solution builds successfully, but throws exception in Startup.ConfigureServices method at services.AddAbpIdentity( …
tchelidze
  • 8,050
  • 1
  • 29
  • 49
4
votes
1 answer

In what Javascript file "abp.services.app" is defined?

I am integrating my own template to ASP.NET Boilerplate and now I am getting JavaScript errors. (function() { $(function() { var _userService = abp.services.app.user; <-- ERROR HERE }) }); In what Javascript file "abp.services.app"…
Martin
  • 39,309
  • 62
  • 192
  • 278
4
votes
2 answers

EF Core Migration with aspnetboilerplate Where to trigger context.Database.Migrate();

I need to ensure my application itself is able to upgrade his database model (apply migrations) In the ABP architecture, where should I make the call to Migrate? context.Database.Migrate(); As this is a call to a infraestructure logic (Entity…