I'm sending data using a get and get in the controller using a QueryString, the problem is that the value goes in a format without the decimal places, so when I have a value of type 10,20, it is sending only 1020 value.
@model IEnumerable<Generico.Dominio.TB_JOGO_DETALHE_TEMP>
@{
ViewBag.Title = "Index";
}
@Html.Partial("_navbarInterno")
@Html.Partial("_PartialMensagens")
@using (Html.BeginForm("GravarDados", "Aposta", FormMethod.Get))
{
<div class="container droppedHover">
<div class="row">
<div class="input-prepend input-append">
<input class="form-control input-sm " onkeyup="somenteNumeros(this);" id="numero" name="numero" placeholder="número.." maxlength="4" type="text"/>
<input class="form-control input-sm" type="number" id="valor" name="valor" placeholder="valor.."/>
</div>
</div>
<br />
<button class="btn btn-primary btn-block " type="submit" >Adicionar</button>
</div>
}