Base solution for your next web application

Activities of "ismcagdas"

Hi,

Mentioned modes DEBUG and RELEASE are Visual Studio's modes, the way you run your project on Visual Studio.

For the enviroments, there is nothing special for ASP.NET Zero. You can select environments for your project in your own way.

It has many criterias like the size of project, fault tolerance, customer needs etc :).

Hi,

  • a notification to be received by every users if we don't specify a tenant nor a user

This is not right. This notification will be sent to subscribed users of current tenant.

The other two cases are correct but notifications are sent to subscribed users only.

You can find more about notifications here if you haven't read it yet. <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Notification-System">http://aspnetboilerplate.com/Pages/Docu ... ion-System</a>

Hi,

After running your application, can you try to go "http://localhost:xxx/Account/Logout" and login again ?

Hi,

In the owin startup class "Startup.cs", SignalR mapping must be placed just before HangFire configuration at the end of Configuration method.

....
    app.MapSignalR();

    app.UseHangfireDashboard(); //Should be removed if not using Hangfire as background job manager
}

Let us know if it does not work.

Hi,

Can you try to publish website to your local IIS and see if this error happens ? If it does not happen, you can compare differencese between your local PC and server.

What is the operating system on published server ? It might be related to that.

Hi,

Which version of ABP is referenced in your project ?

Hi,

If user with id 1 does not belong the same Tenant/Host with logged in user, you cannot see CreatorUserName. Can you confirm that, logged in user and user with id 1 belongs to same tenant or host.

If this is not the case, then we will investigate further.

Answer

Hi,

Can you share your js & cshtml files in order to check problem. Do you see any script error when open chrome developer console ?

Is your search button html <a> element ? If so, it's href property might be causing the problem.

Answer

Hi,

If you also dont want to send Id field to client, dont derive from any class. You can define Salelistdto as a simple class.

If you can share your Salemast class i can check for the TenantId being 0 problem.

You can also check documentation about Entities & DTOs, it might be helpful as well.

<a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Entities">http://aspnetboilerplate.com/Pages/Documents/Entities</a> <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Data-Transfer-Objects">http://aspnetboilerplate.com/Pages/Docu ... er-Objects</a>

Hi,

We will think of it,

Thanks for the idea.

Showing 12521 to 12530 of 12551 entries