Implementation of Currency Conversion in Umbraco 10
Hi,
I am using Umbraco 10. I want to implement a currency conversion on my website. For that, I have two methods in the controller and I have used begin form in the view file. Now, I am unable to get the value in the textbox but while debugging I got the correct value. Please help me to display the value in the text box. Thanks in Advance.
Implementation of Currency Conversion in Umbraco 10
Hi, I am using Umbraco 10. I want to implement a currency conversion on my website. For that, I have two methods in the controller and I have used begin form in the view file. Now, I am unable to get the value in the textbox but while debugging I got the correct value. Please help me to display the value in the text box. Thanks in Advance.
My Controller:
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using MimeKit;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System.Net;
using System.Threading.Tasks;
using Umbraco.Cms.Core.Cache;
using Umbraco.Cms.Core.Configuration.Models;
using Umbraco.Cms.Core.Logging;
using Umbraco.Cms.Core.Mail;
using Umbraco.Cms.Core.Models.Email;
using Umbraco.Cms.Core.Routing;
using Umbraco.Cms.Core.Services;
using Umbraco.Cms.Core.Web;
using Umbraco.Cms.Infrastructure.Persistence;
using Umbraco.Cms.Web.Common.PublishedModels;
using Umbraco.Cms.Web.Website.Controllers;
namespace Umbraco.Cms.Web.Common.Controllers
{
}
View file:
@using (@Html.BeginForm("Convert", "CurrencyConversion", FormMethod.Post))
{
is working on a reply...