Base solution for your next web application

Activities of "michaelm"

You guys Rock!

Is there a way to globally replace all non-user friendly messages with a user friendly one.

simple Example: asp.net zero throws message "An internal error occurred during request" - replace with "We could not service your request at this stage, please try again later"

This will also be needed for the 500 error messages being thrown : Example: error 500 : "An internal error occurred during your request" - we would like to replace text with something like "We could not service your request at this stage, please try again later"

The registration UI allows an email address to be input for the username aslong as it equals the email address field.

This is problematic as the Maxusernamelength=32 and email max length =256??? The AbpUsers table has the same length restrictions.

Question: what kind of issues can we expect if we update the DB Username field to = nvarchar(256) and the registration page to allow username maxlength to 256

extract below"

namespace Abp.Authorization.Users // // Summary: // Maximum length of the Abp.Authorization.Users.AbpUserBase.UserName property. public const int MaxUserNameLength = 32; // // Summary: // Maximum length of the Abp.Authorization.Users.AbpUserBase.EmailAddress property. public const int MaxEmailAddressLength = 256;

Is there a way for us to host the tenant admin as subdomain on same level as other tenant sites.

example: mydomain.com - where we can host our public facing site contents. MasterAdmin.mydomain.com - where master tenant admin will take place Tenant1.mydomain.com Tenant2.mydomain.com Tenant3.mydomain.com

we want to store a variable for the users current session. what is the best way to archive this.

Question

does anyone have the step to create multiple Areas in the save MVC project for aspnetzero.

We added a new folder under app called "MyNewArea" created controller in a controller folder under the MyNewArea folder Set the attribute on the controller to the new area name: [Area("MyNewArea")] We created a view with the same name of the controller.

when running the code & navigating to the respective view . - the controller never enters debug mode indicating it is never called.

Showing 1 to 6 of 6 entries