Base solution for your next web application

Activities of "alirizaadiyahsi"

Hi @abdourahmani,

Did you see /ProjectName.Host/App_Data/Logs.txt? Is there any error message?

Hi @cmthomps,

Before run "docker-compose", you should run "build-mvc.ps1" script under "aspnet-core/build" folder.

Check this article: <a class="postlink" href="https://www.codeproject.com/Articles/1189662/Running-ASP-NET-Boilerplate-Module-Zero-Core-Templ">https://www.codeproject.com/Articles/11 ... Core-Templ</a>

is there a way to generate a new web.public project?

There is already an example: Web.Public. So you can refer to it when you create a new public web site.

Will having multiple web projects cause any issues? For example, do we need to create new Application or Web.Core class library for every new web project?

Application and Web.Core layers are shared by all mvc client applications. So you can create mvc client applications like web.public as much as you want.

Hi @ajayak,

you can use app services (this is the better way) for your example from client side, for example:

Client side

var userAppService = abp.services.app.user;
var tenantAppService = abp.services.app.tenant;
...

userAppService.sendAnyData(anyDataDto);

App service

public AnyReturnValue SendAnyData(AnyDataDto anyDataDto)
{
    
}

Hi @Ricavir,

We don't have any experience about this component. But it seem, this component don't have any documentation. And when I look the metronic code, it is different than your code.

<a class="postlink" href="http://keenthemes.com/preview/metronic/theme/admin_4/components_bootstrap_switch.html">http://keenthemes.com/preview/metronic/ ... witch.html</a>

<div class="bootstrap-switch bootstrap-switch-wrapper bootstrap-switch-on bootstrap-switch-mini bootstrap-switch-id-test bootstrap-switch-animate" style="width: 64px;">
		<div class="bootstrap-switch-container" style="width: 93px; margin-left: 0px;">
			<span class="bootstrap-switch-handle-on bootstrap-switch-primary" style="width: 31px;">ON</span>
			<span class="bootstrap-switch-label" style="width: 31px;">&nbsp;</span>
			<span class="bootstrap-switch-handle-off bootstrap-switch-default" style="width: 31px;">OFF</span>
			<input checked class="make-switch" data-size="mini" id="test" type="checkbox">
		</div>
	</div>

Hi @moustafa,

Are you still getting error that is related to xunit? This is a general error that is occured when project build (it can't restore some necessary nuget packages). And there may be different solution. Could you check two following solution and tell us whether it works.

[https://stackoverflow.com/questions/22909506/this-project-references-nuget-packages-that-are-missing-on-this-computer]) [https://stackoverflow.com/questions/32254439/nuget-packages-are-missing])

Hi,

In project there is a menu like you want that named 'Subscription'. This menu is only visible for tenants. So you can do like this example. And also you may check this document (HIDE UNAUTHORIZED MENU ITEM) : <a class="postlink" href="https://aspnetzero.com/Documents/Developing-Step-By-Step-Core">https://aspnetzero.com/Documents/Develo ... -Step-Core</a>

Hi,

Actually you found the issue. And this is the solution : <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero-core/commit/f731029deaac27693dd2810381acef1bbf49deca">https://github.com/aspnetzero/aspnet-ze ... 1bbf49deca</a>

Thanks for feedback.

Hi,

There is no automatic way to do this. You should do this manually.

Showing 191 to 200 of 369 entries