Base solution for your next web application

Activities of "dermeister"

Hey,

There's an easy solution for using current userId in spa applications but what is the way of using logined userId in cshtml mp application.

Hello,

Would someone demonstrate how to page tables, data etc. with multi page applications in mvc. As far as i've checked there's PagedResultOutput to accomplish it. Any approach without adding another package to the project.

Hi,

I've been accomplished this so many times it's an easy task but this time i could not figure out why this happens. Im just trying to call a single method of my app service but it returns Filters.AbpExceptionFilterAttribute - There are 1 validation errors: Filters.AbpExceptionFilterAttribute - input is null! (input) in logs. here are some codes.

public async Task<CategoryListDto> GetCategory(IdInput input)
        {
            var toReturn = await _categoryRepository.GetAsync(input.Id);
            return toReturn.MapTo<CategoryListDto>();
        }

it does not even jumps to breakpoint.

appService.getCategory({ id: categoryId })
                    .success(function (data) {
                        vm.input = data;
                    });
Showing 1 to 3 of 3 entries