This is what I have in the controller, I create a test class, I convert it to json and send that json to the class that converts any json into a DataTable.
var Personas = new List<Personas>();
Personas.Add(new Personas() { Nombre= "Juan"...
I have this function in jQuery
<script type="text/javascript">
$(document).on("ready", function () {
$("#area_tabla table tr td").click(function () {
var celda = $(this);
alert(celda.html());...
Why do you return the following error?
ExecuteNonQuery: Connection property has not been initialized.
Code:
public bool IngresarUsuario(Prueba objeto)
{
using (SqlConnection con = new SqlConnection(strConnection))
{
t...
I try to go through all the rows that contain the " highlightchecked " class of a jquery DataTable using this code:
$(dtTable12.rows().nodes()).each(function () {
if ($(this).closest('tbody tr').hasClass('highlightchecked')) {...
I have my Web API in ASP.NET , I need to make a simple abml consuming the services from the MVC driver. Could you help me?
The WEB API that I have is the one that generates scaffolding
I have the following question and maybe someone has already implemented it and can help me, they will see in languages like PHP I can be sending in what record it goes when I upload a file and this I'm showing via a progressbar or a message of "...
I'm doing a site where I use Google Maps API, I generate coordinates and I search for a specific site, then I take a site capture with html2canvas to generate an image in <img> , my question is:
How can I take this image to...
I have a problem saving multiple photos, I get the error Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.
I have a modal where I keep multiple photos:
tables: PHOTO -NOTICIA_FOTO (inter...
I have to return a datetime from a string in my asp.net project to feed a calendar that only accepts datetime.
The string is a two-digit number that represents the expiration date of a product. I convert it with the following code to DateTime, b...