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

Activities of "maliming"

<link rel="stylesheet" href="//metronic/dist/html/default/assets/demo/default/base/style.bundle.css?v=I6VCJPzgx8kEu1QQkEPCpevlxGZKqy9bnzUxzUu6apg&amp;v=I6VCJPzgx8kEu1QQkEPCpevlxGZKqy9bnzUxzUu6apg" />

<link rel="stylesheet" href="/metronic/dist/html/default/assets/demo/default/base/style.bundle.css?v=I6VCJPzgx8kEu1QQkEPCpevlxGZKqy9bnzUxzUu6apg&amp;v=I6VCJPzgx8kEu1QQkEPCpevlxGZKqy9bnzUxzUu6apg" />

Keep only one left slash: href="/metronic/..."

I see chrome output information: ERR_NAME_NOT_RESOLVED

You can see what happened to this css request under the chrome control panel Network.

Can you share a screenshot of the output of the chrome console?

It looks like there is no problem. You can send the project code of the problem to my email: [email protected] I will download and check it out.

Have you executed in the Web.mvc directory: npm run create-bundles command?

<a class="postlink" href="https://aspnetzero.com/Documents/Getting-Started-Core#run-the-project">https://aspnetzero.com/Documents/Gettin ... he-project</a>

Is it a Web.Host project? Is there a problem with the swagger function?

Need more information. Such as the specific version of Zero, related error log

<a class="postlink" href="https://github.com/aspnetzero/aspnet-zero-core/blob/10aaf4df7ec6d1599096273aa276026730c0088f/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Application/Authorization/Accounts/AccountAppService.cs#L133">https://github.com/aspnetzero/aspnet-ze ... ce.cs#L133</a>

UserManager's Update method does not perform password verification. So we have to change the password using UserManager's ChangePassword.

<a class="postlink" href="https://github.com/aspnetzero/aspnet-zero-core/issues/1558">https://github.com/aspnetzero/aspnet-ze ... ssues/1558</a>

You can temporarily use

await UserManager.ChangePasswordAsync(user, input.Password);

UI also needs to be updated synchronously.

Can you download a Zero MVC Test Project(<a class="postlink" href="https://aspnetzero.com/Download">https://aspnetzero.com/Download</a>) and reproduce it and share it?

I can specify queue in abp.

<a class="postlink" href="http://docs.hangfire.io/en/latest/background-processing/configuring-queues.html">http://docs.hangfire.io/en/latest/backg ... ueues.html</a>

public static class Test
{
	[Queue("secondary")]
	public static void SomeMethod()
	{

	}

	[Queue("default")]
	public static void SomeMethod2()
	{

	}
}

BackgroundJob.Enqueue(() => Test.SomeMethod());
BackgroundJob.Enqueue(() => Test.SomeMethod2());

I don't think so, Code First is the recommended practice (such as EF Core only supports Code First)

UseCase Attribute Restrictions You can use the UseCase attribute for:

All public or public virtual methods for classes that are used via its interface, e.g. an application service used via its interface. All public virtual methods for self-injected classes, e.g. MVC Controllers. All protected virtual methods.

Showing 2861 to 2870 of 2998 entries