Base solution for your next web application

Activities of "ismcagdas"

Hi,

I suggest you to read this document <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Data-Transfer-Objects">http://aspnetboilerplate.com/Pages/Docu ... er-Objects</a>

Even all ABP documents if you have time. <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents">http://aspnetboilerplate.com/Pages/Documents</a>

Documents cover software development best practices and how they are implemented in ABP.

Answer

Hi,

You can replace it liek this in your module's PreInitialize method.

Configuration.ReplaceService<IAbpZeroDbMigrator, AbpZeroTenantDbMigrator>();

You can also check below forum topic and github issue for seperate DbContext usages. <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/issues/247">https://github.com/aspnetzero/aspnet-zero/issues/247</a> #1316@38f4c851-f549-4837-9916-2b8a9d396f9a

Answer

No problem, I'm glad that it's working :)

Hi,

There is a css file named "fonts-open-sans.css" in the web project. If you check it's code it tries to use online resource, if it's not available it uses local files. You can change it's order if you want.

Hi,

You can use AbpSession's UserId property.

Hi,

I have sent you the my sample project.

Hi,

You need to upgrade ABP to at least 0.9.0. See the issue <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/issues/646">https://github.com/aspnetboilerplate/as ... issues/646</a>

Hi,

Can you add this to your select item.

ui-jq="selectpicker"

it should be something like this

<select id = "BatchSelectionCombobox"
    class="form-control bs-select"                        
    ui-jq="selectpicker"                
    ng-model="vm.selectedBatch"
    ng-change="vm.fillStudents(vm.selectedBatch.id)"
    ng-options="o.name for o in vm.batches"                                               
    ui-options='{ iconBase: "fa", tickIcon: "fa fa-check" }'
    data-live-search="true"
    refresh-delay="0">
Answer

Hi,

I think this is a common thing for an MVC project. You can search on the internet to find out how to use aspx pages in ASP.NET MVC project.

I have found this question on stackoverflow but I'm not sure if it is going to help or not. You can check it <a class="postlink" href="http://stackoverflow.com/questions/25385532/how-to-add-aspx-pages-to-existing-mvc-4-project">http://stackoverflow.com/questions/2538 ... -4-project</a>

Hi,

You can even set it in the Application_Start of Global.asax if you are not using ASP.NET Core version.

Showing 11851 to 11860 of 12740 entries