Questions tagged as 'mvc'

1
answer

protect the unauthorized use of my DLL

Cordial greeting! I have a solution in Visual Studio which has 3 projects: MVC Web Project Desktop Project (WinForms) Project DLL: where it has the logic of the application. Project 1 and project 2 refer to project 3 (the DLL) and...
asked by 04.11.2017 / 17:52
0
answers

Connection of a websocket is not kept open in MVC

I'm trying to create an application that uses websockets for various purposes. At the time, I started developing a chat that is the most common example and I require it for a small inter-institutional help chat, among other things that I plan...
asked by 31.10.2017 / 19:55
2
answers

How to protect access to pages in MVC?

I have an application in MVC which has several pages (Views). The homepage is an authentication, which requires username and password. What I need is to protect all the pages (cshtml) so that it is not possible to access without going through...
asked by 20.10.2017 / 21:43
0
answers

Browse the server directory from the web application to get the directory path

I am working on an intranet website, this does not have communication with the internet, so security problems should not exist. The point is that I require that when the user is in a form when entering an option in which he will request the path...
asked by 03.11.2017 / 17:45
1
answer

Use GET when url is hidden with .htcacess

I am using MVC php (I'm new to MVC) and I have a .htaccess file in which I have the following code RewriteRule ^(\w+)$ index.php?action=$1 I have a driver class Enlaces{ public function enlacesController(){ if(isset($_GET["a...
asked by 27.10.2017 / 00:59
0
answers

PHP MVC Submit button does not work

I have a problem, I have a very large table so I decided to use AJAX to be used as a filter, that is, the table will only show filtered data <script type="text/javascript"> $(document).ready(function(){ $('#search_apat, #sear...
asked by 26.10.2017 / 17:31
0
answers

how to define the width of EditorFor?

I have this code in the view: @Html.EditorFor(model => model.Fecha) @Html.EditorFor(model => model.Fecha) and in my model: public class SaldoCursoParaleloParam { [Required(ErrorMessage = "Ingrese una Fecha Valida")]...
asked by 30.10.2017 / 23:26
1
answer

How can I read the value of an element in an xml file and return the content? [closed]

I have an application which has an xml file. This xml file is serialized with the content in which it comes from a variable of a web page. What I need to do now is get the value of each of the elements in this xml file and compare them in an...
asked by 19.10.2017 / 18:15
0
answers

access the hardware from a mvc web app

I have a library (dll) access to a COM port (usb) which econtrola a mechanism. the issue is that when I use it from a WindowsForm application, I can access the DLL's instructions without problems, that is, it works correctly, but when this DLL u...
asked by 18.10.2017 / 04:37
2
answers

I can not register a user in laravel 5.5

File of the registry controller I am trying to register a user to a table called users does not throw me any error when saving only saves them use RegistersUsers; /** * Where to redirect users after registration. * * @var string */ protec...
asked by 05.10.2017 / 18:42