Questions tagged as 'mvc'

3
answers

Error loading form data

I'm making a form that loads data and shows it in a view with MVC. Customer.cs using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Formulario2.Models { public class Customer {...
asked by 21.04.2017 / 21:36
1
answer

How to connect files by MVC in ASP.VBscript?

I am trying to connect 3 code files through MVC that are in 3 different folders (view, model and controller) and the code that is in view connects me with the controller, but the controller does not connect me with the of the model ... I tried e...
asked by 23.04.2017 / 06:39
0
answers

Doctrine and CodeIgniter 3 Does not recognize the class

Good morning everyone. I'm creating a project with Doctrine, the problem is when I try to do something like this: $message = $this->em->find('Entities\PdContact', 1); From the model, I get the following error:    Class 'Entities...
asked by 11.04.2017 / 16:53
2
answers

Help with URL logic [closed]

Hello developers friends, I want to know what the logic is in this url: link Because I do not see any identifier to call that article or it's how I'm thinking, that this part is the identifier: "the-most-of-countries-of-the-world-do-n...
asked by 26.03.2017 / 16:43
1
answer

MVC error when passing model data between views

I am developing an app to start, you must ask the user some data to auenticarse (username and password) but on different screens, since it is a totem (without keyboard or mouse) and on each screen displays a virtual keyboard , which is alphabeti...
asked by 24.03.2017 / 15:23
1
answer

HTTP Error 404.0 - Not found - IIS

When I make a AJAX request, the strange thing is that when I run it locally it works perfectly but when I upload it to IIS it throws me the following error.    HTTP Error 404.0 - Not Found       Details:       Module: IIS Web Core   No...
asked by 23.03.2017 / 18:02
0
answers

Do not run an ActionResult when I refresh the page

Greetings! I am trying to disable a driver every time the view is refreshed. That is, the ActionResult executes a function that inserts data into sql, but every time the page is updated by f5 or url, the ActionResult is running once again and in...
asked by 02.03.2017 / 06:27
1
answer

CSS is lost when refreshing the page

I am polishing the details of an MVC application in C #, but for some reason, although the changes are seen when I record my project, they are lost as if by magic when refreshing the page. As you can see, everything is even "lost" to such an ext...
asked by 06.02.2017 / 23:12
1
answer

Problem with PHP routes

I have a problem with the routes (I think) since I am working with Xampp in Windows and the project works well, but when uploading it to a hosting, Mark me an error:    Fatal error: Class '\ App \ Controllers \ Home' not found in /home...
asked by 14.03.2017 / 04:06
1
answer

How to download a pdf in ajax?

I have a method that returns a pdf return File(stream, "application/pdf"); I call this method with ajax in the following way $.ajax({ url: '@Url.Action("HojaDeSalidaPDF")', data: { 'ID': id }, type: "GET",...
asked by 28.01.2017 / 19:30