C # does not want to read the code, it marks me completely as an error, I do not know if it's because of the way I'm locking up each case.
the dtpdesde and dtphasta are controls DateTimePicker
txtbusqueda and...
I have a list of a class (A) that contains a list of another class (B) and that in turn contains another list of another class (C).
I need to filter the initial list (A) from the value of a property of the class (C).
The example would be somethi...
I have this code in my timer.
What happens is that when making comparisons with a chronometer I do not have the required accuracy, I have no idea what the error may be.
I need to make a chronometer to mark me m-s-ms.
private void t1_Tick(obje...
I used the RowStyle event with the following code:
private void dgvPersonalizadoInterior_RowStyle(object sender, RowStyleEventArgs e)
{
try
{
for (int i = 0; i < dgvPersonalizadoInterior.RowCo...
Next I append an example of code html where I need to know how I can send execute a form that has a OpenFileDialog object to search and load a file with extension .csv ; the part where I want to embed the highlight with asterisks (*)....
I have my response that comes in json I get it in the following way:
StreamReader sr = new StreamReader(newStream);
String json = sr.ReadToEnd();
With a WriteLine it shows me:
[{"id":"1","correo":"[email protected]","clave...
I need to return the list facturas ordered by the field entidades .
I've tried like that but it does not work for me:
facturas.OrderBy(f => f.Entidades).ToList();
Code:
public ActionResult Index()
{
var facturas =...
Is it wrong to declare urls in ajax in this way?
$.ajax
({
url: '/SFI_IncentivoDet/buscarIncentivosSinDetalles',
type: 'post'
});
I am working with the functions in separate files, in some cases I hav...