Base solution for your next web application
Ends in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "aaron"

Is that from the page or error log? Can you show a screenshot of the page?

Which dependencies?

Thanks. But now the errors continue down the chain.

So do the same.

Make WSCETestSoap implement ITransientDependency, or register in your module's PreInitialize() method:

IocManager.Register<WSCETestSoap>(DependencyLifeStyle.Transient);

You need to login with your GitHub account to access the private repo. You can invite yourself here: <a class="postlink" href="https://aspnetzero.com/LicenseManagement">https://aspnetzero.com/LicenseManagement</a>

It was released in v4.6.0 yesterday. Related issue: https://github.com/aspnetzero/aspnet-zero-core/issues/504

You can override positionClass for toastr in your js file:

toastr.options.positionClass = 'toast-top-right';

ABP targets .NET Standard 2.0, which supports .NET 4.6.1 Framework. Your issue is with Visual Studio tooling, which is not within our control.

For VS2015, you may try installing NuGet client 3.6 or higher but that may no longer work.

Preferably, add this in your _Layout.cshtml or view:

@{
    SetAntiForgeryCookie();
}

Alternatively, intercept XMLHttpRequest - ajax only:

(function (send) {
    XMLHttpRequest.prototype.send = function (data) {
        this.setRequestHeader(abp.security.antiForgery.tokenHeaderName, abp.security.antiForgery.getToken());
        return send.call(this, data);
    };
})(XMLHttpRequest.prototype.send);
Showing 1381 to 1390 of 1543 entries