I have a registration screen where the user can add or not phone numbers. I am adding fields to insert the phone dynamically, but one of these fields is a select that will bring data from the database. My jquery is hitting the controller and it...
I'm developing an application in Asp.Net MVC and am having a problem that I can not solve. I have a form with 2 buttons submit , and when I do submit I want to get the name of the button to which I clicked by id and thus chan...
Hello, I'm new here and I'm having problems with my application!
I want to list 2 list in a view (Promotions and Postings).
The code is like this!
(class Promoting)
namespace SiteJapaBrindesDDD.MVC.Entidades
{
public class CadPromocao...
I want to display the link that can be clickable, appearing as text:
I'm using the code below, but it still comes as text and I can not click:
@Html.Raw(HttpUtility.HtmlDecode(item.Facebook))
I have the following difficulties:
1 - View data from a select with inner join. The fields in the other tables do not all appear in the select, and those that appear have a value of zero (0).
2 - Write the data in the database. Even if you...
I have a situation where I would like to position the page in the same position as the container where it was before sending Get?
Example:
<!-- ==== contato ==== -->
<div class="container" id="contato" name="contato">
<...
I have the following route, where I get the delegate id:
link
So it's working, but I'd like to show the name of the rep
link / Index / JsBlaBla
In my MapRoute I'm doing so unsuccessfully
public static void RegisterRoutes(Ro...
I'm customizing the user registry part, using the Entity Framework's Identity Tool.
Then on the registration page, I added a ComboBox (Select in HTML):
PartofmyView:<divclass="form-group">
@Html.LabelFor(m => m.Email,...
Jquery is returning undefined to one of the generic properties I created, to use with Bootgrid. I am trying to load a modal according to the click event of one of the buttons on the grid, but the modal opens without content. JQuery recognizes th...
I have a controller that has two Actions;
public ActionResult Cadastrar()
{
return View();
}
//[ValidateAntiForgeryToken]
[HttpPost]
public ActionResult Cadastrar(Usuario usuario)
{
if (ModelState.IsValid)
{
var appUsuari...