Questions tagged as 'mvc'

1
answer

How can I get the comments of the articles with two different tables with php PDO MVC?

This is my first message in this forum. I have to print the results of several sections, for example, the articles in the "fes_articles" table and the comments in the "fes_comments" table. At the beginning they ask me first on the left to tak...
asked by 10.02.2018 / 16:39
0
answers

How to implement MVC in Java?

I am studying about MVC, however I have doubts about its correct implementation since I see everywhere that it is done differently. Now, what I do is the following: 1- I create the DTO that represent my tables in the BD. 2- I create the...
asked by 30.01.2018 / 01:38
0
answers

Pass id value selected in dropdowlist to the controller to filter webgrid

I had previously asked a question that thanks to Davlio has already been resolved. However, another question arose, I have two stored procedures mapped in entityframework, one to fill dropdownlist (GetDepartamentos_Result) and another...
asked by 12.01.2018 / 19:05
0
answers

CRUD with DAPPER in MVC C #

I would like to know how I can add an edit and search with Dapper library, I already made the insert and delete method. I'm working with MVC C # VS 2013 CONTROLLER namespace WebApplication1.Controllers { public class Default1Controlle...
asked by 10.01.2018 / 20:34
1
answer

Fill a Dropdownlist with an occurrence stored in MVC

I want to fill out a dropdwonlist with a stored procedure. My procedure is as follows: CREATE PROCEDURE GetDepartamentos AS BEGIN SELECT 0 Id_Departamento, 'Todos' Nombre_Departamento UNION ALL SELECT Id_Departament...
asked by 10.01.2018 / 20:10
1
answer

Why does not this jquery code work for DataTable in Asp.Net Mvc

I'm trying to show the data in the DataTable format and it does not work for me here, I pass the code to it. @{ ViewBag.Title = "GetData"; } <h2>Employee CRUD Operations</h2> <table id="employeeTable" class="ta...
asked by 05.12.2017 / 17:46
0
answers

How do I convert a BLOB url: xxxxxxxxxx that I use in a picture preview a BLOB or FILE

I'm doing a project in which I want to upload images to a server, but before sending it to the server, a preview of the image is shown, for that I use the following code. It is worth mentioning that the user can choose several images and several...
asked by 19.12.2017 / 17:15
0
answers

Datepicker Region dd / mm / yyyy MVC [closed]

Good estimates: I have a theme with the validation of the Date of Birth, I have the datepicker set to show the date in dd / mm / yyyy format But when I enter the Input, the validation of the Data Annotations jumps and validates me as mm / dd...
asked by 20.10.2017 / 20:45
0
answers

Does not recognize Requests in Laravel 5.5 project [closed]

I have the following methods in a controller: public function edit2($id) { $post = Post::find($id); $this->authorize('pass', $post); $categories = Category::orderBy('name', 'ASC')->pluck('name', 'id'); $tags...
asked by 24.04.2018 / 03:01
0
answers

MVC4 C # problems calling Action from Controller

I have an index.cshtml that contains a JqGrid grid, which is filled with a controller method and works correctly. (invoke the method from the client and fill all its fields) Then I have a function _editRow that is executed when a record o...
asked by 23.04.2018 / 21:58