I am using Visual Studio 2017 with ASP.Net and MVC .
Where I am sorting the fields of a table by a field Call number .
public ActionResult Index(){
var hojaArchivo = db.HojaArchivo.Include(h => h.HojaInicial).Include(h => h.Mat...
I would like you to help me with this code that I am solving for a university project.
It turns out that I have 3 Tables that I want to show it in different select I am working with the MVC, where we have a general controller, for this contro...
I have this code and it shows nothing. I searched for information I did ANOTHER test with
<?php if(isset($_SERVER['HTTP_REFERER'])) {
echo $_SERVER['HTTP_REFERER'];
}
EITHER. I saw in a tutorial that a person if he left here, not...
I'm doing a small guided tutorial for a web page, I'm using a library called introjs , which helps a lot for that task.
But I have a small problem, the web page is created with MVC Razor, and the menu part is dynamic, and it is loaded from t...
I need to create a sequence that is inserted by default, that is, I need that when inserting a record it is inserted by default,
example
fn000001,fn000002, ect.
help
I'm using this library link
And everything works very well except for two things, ps when downloading the download in the project folder which when uploading to production fails ps does not lower anything, I guess for the permissions....
use VS 2013, I have a table that should show the data of a form, but it shows undefined
HomeController
[HttpPost]
public ActionResult AddUser(string UserName, string Email, string Password)
{
var user = new UserModel();...
I have a form to add rows to a table
what I do not know how to do is how to receive the radioButton field when saving, since each one has different names in each row, for example
1st row --- SinPendulo0
2nd row ---- SinPendulo1
.......
I have a GUI class and another Event Handler class that implements the Listeners. In the GUI I have 2 buttons that listen to the controller class.
How do I make the keyPressed method of the management class identify which JButton is being pus...