Base solution for your next web application

Activities of "azmat"

hi,

i am using MVC jQuery DotNet Template.

i have configured LDAP authentication as mentioned in your documentation and it is working fine. problem is that it shows a login screen and user have to enter user name password. i want to have automatic login since application will be hosted on intranet and users are already logged in to computer using their domain account.

i have gone through following all issues but couldn't find a solution. https://support.aspnetzero.com/QA/Questions?Sort=CreationTime-desc&Filter=Windows+authentication

In Normal MVC application i just need to change IIS settings but in aspnet zero may i know how it can be done?

Hi,

Can you provide detail documentation for ADFS integration.

  1. when adfs configuration is done what are the properties which are required and what should be their name.
  2. when user will access the site for the first time, after getting a token from ADFS we need to add a user to Users table and default roles, may i know the method and class in which i can do that.

I have done below steps Configuration.MultiTenancy.IsEnabled = false;// AbuDhabiPoliceConsts.MultiTenancyEnabled;

        //Enable LDAP authentication (It can be enabled only if MultiTenancy is disabled!)

Configuration.Modules.ZeroLdap().Enable(typeof(AppLdapAuthenticationSource));

In setting, I have enable the Windows Authenication still i am unable to login.

https://docs.aspnetzero.com/documents/zero/latest/Development-Guide-Mvc-Angularjs We are using ASP.NET MVC 5.x & JQuery Template Please help

Hi,

I would like to enable auditing in certain section of application only, when some changes to data happens. Like change in Role Permission, User assignment to roles and when data is added or modified in few entities created for my application.

Can you guide me how to achive above requirement?

Hi,

I want to configure a recurring job through hangfire, i have already created my job folloiwng the approach mentioned in following link.

https://aspnetboilerplate.com/Pages/Documents/Background-Jobs-And-Workers#create-a-background-job

I can call it from application service using following code, _backgroundJobManager.Enqueue<MortgageStatusService, int>(1);

May i know how i can configure it at the start of application so that it executes after every 15 minutes?

public class MortgageStatusService : BackgroundJob<int>, ITransientDependency { private readonly IRepository<CarMortgage> _carMortgageRepository; private readonly IRepository<CarMortgageLog> _carMortgageLogRepository; private readonly IUnitOfWorkManager _unitOfWorkManager;

    public MortgageStatusService(
        IRepository&lt;CarMortgage&gt; carMortgageRepository,
        IRepository&lt;CarMortgageLog&gt; carMortgageLogRepository,
        IUnitOfWorkManager unitOfWorkManager)
    {
        _carMortgageRepository = carMortgageRepository;
        _carMortgageLogRepository = carMortgageLogRepository;
        _unitOfWorkManager = unitOfWorkManager;
    }

    [UnitOfWork]
    public override void Execute(int args)
    {
        SynchronizeData.Synchronize(_carMortgageRepository, _carMortgageLogRepository);
    }
}
Question

I am going to create a new project using "Asp.Net Core MVC & JQUERY" type, I want to know which .NET Framework version i should use? My concerns are following,

Are you going to support both frameworks in the furture or will be more inclined towards .Net Core?

Is there any limitation in Asp.Net Zero features if i create a project using .Net Framework 4.6.1?

Showing 1 to 6 of 6 entries