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

Activities of "avanekar02"

Question

Hello ,

published the project and ran test email under email tab

it throws an internal server error says 500

<a class="postlink" href="http://localhost:6240/api/services/app/">http://localhost:6240/api/services/app/</a> ... dTestEmail

when i click on this link it shows


{"message":"An error has occurred.","exceptionMessage":"There is an action SendTestEmail defined for api controller app/hostSettings but with a different HTTP Verb. Request verb is GET. It should be Post","exceptionType":"Abp.AbpException","stackTrace":" at Abp.WebApi.Controllers.Dynamic.Selectors.AbpApiControllerActionSelector.GetActionDescriptorByActionName(HttpControllerContext controllerContext, DynamicApiControllerInfo controllerInfo, String actionName) in D:\Halil\GitHub\aspnetboilerplate\src\Abp.Web.Api\WebApi\Controllers\Dynamic\Selectors\AbpApiControllerActionSelector.cs:line 103\r\n at Abp.WebApi.Controllers.Dynamic.Selectors.AbpApiControllerActionSelector.SelectAction(HttpControllerContext controllerContext) in D:\Halil\GitHub\aspnetboilerplate\src\Abp.Web.Api\WebApi\Controllers\Dynamic\Selectors\AbpApiControllerActionSelector.cs:line 56\r\n at System.Web.Http.ApiController.ExecuteAsync(HttpControllerContext controllerContext, CancellationToken cancellationToken)\r\n at Castle.Proxies.DynamicApiController1Proxy_6.ExecuteAsync_callback(HttpControllerContext controllerContext, CancellationToken cancellationToken)\r\n at Castle.Proxies.Invocations.ApiController_ExecuteAsync_6.InvokeMethodOnTarget()\r\n at Castle.DynamicProxy.AbstractInvocation.Proceed()\r\n at Abp.WebApi.Controllers.Dynamic.Interceptors.AbpDynamicApiControllerInterceptor1.Intercept(IInvocation invocation) in D:\Halil\GitHub\aspnetboilerplate\src\Abp.Web.Api\WebApi\Controllers\Dynamic\Interceptors\AbpDynamicApiControllerInterceptor.cs:line 57\r\n at Castle.DynamicProxy.AbstractInvocation.Proceed()\r\n at Castle.Proxies.DynamicApiController`1Proxy_6.ExecuteAsync(HttpControllerContext controllerContext, CancellationToken cancellationToken)\r\n at System.Web.Http.Dispatcher.HttpControllerDispatcher.

Question

Where do i setup the email configuration. example my email id is <a href="mailto:[email protected]">[email protected]</a> and pwd is xxx123 so do your have a default setup which copies current server config or do i have to setup email configuration please advise.

currently in the login page when i click email activation it throws server error i

Thanks Anwar

Hello

how do i call a function from a view in frontend the funtion is defined in the controller as follows

using Abp.Domain.Uow;
using Samit.CmsProTest.School.Courses;
using Samit.CmsProTest.School.Courses.Dto;
using Samit.CmsProTest.Web.Models;
using Samit.CmsProTest.Web.Models.FeedBack;
using System.Web.Mvc;

namespace Samit.CmsProTest.Web.Controllers
{
    public class FeedBackController : CmsProTestControllerBase
    {
        private readonly ICourseDtlAppService _courseDtlAppService;

        public FeedBackController(ICourseDtlAppService courseDtlAppService)
        {
            _courseDtlAppService = courseDtlAppService;
        }

        public ActionResult Index(FeedBackViewModel feedbackViewModel)
        {

            var model = new FeedBackViewModel();

            return View(model);
        }


        public ActionResult FeedBack(FeedBackViewModel feedbackViewModel)
        {

            var model = new FeedBackViewModel();

            return View(model);
        }

    }
}

Hello Brother

How can i display site statistics like total number of visitors visited my site.

Regards Anwar

Hello

Can you show me how i can send email from a FrontEnd page using EmailSender.

Thanks

Anwar

Hello i am using a daterangepicker and the statement is as follows

&lt;label&gt;@L("Date")&lt;/label&gt;
                        &lt;input date-range-picker=&quot;&quot; name=&quot;StartDate&quot; id=&quot;StartDate&quot; class=&quot;form-control date-picker ng-pristine ng-valid ng-isolate-scope ng-touched&quot; type=&quot;text&quot; ng-model=&quot;vm.coursedetails.startDate&quot; options=&quot;{singleDatePicker: true}&quot; required=&quot;&quot; ng-class=&quot;{&#39;edited&#39;:vm.coursedetails.startDate}&quot;&gt;

it works fine if language is english but when language is switched to arabic it allows selection but when saves it keeps the date unchanged when updating i have checked the input on the form it is the new selected date but when it goes to appservice the input retains the old date when updation is called

please tell me how to overcome this please

regards Anwar

Question

Hello this is the error i get on image load,

i am loading it under common\images\general folder

i have assigned permissions too for the folder

Regards Anwar

Hello

Can i pass an array from index,js page to AppService page

public async Task<Int32> CreateBasketHdrPAsync(CreateBasketHdrInput input)

regards Anwar

Hi

i have an array which is a shopcart with x number of items when the user checks out of the cart i want to insert the cart items into a table called basket and the totals of the shopcart items into a table called baskethdr.

i need all record to be inserted on rollbacked if fail. In examples shown in the step by step we are adding 1 by 1 item but that is not how i need. please can you assist me here.

my

Question

hello

how can i check what is the current language from AppService in Application project and also how to check the language fro frontend controllers .

Thanks Anwar

Showing 71 to 80 of 130 entries