I'm trying to create a view component to reuse on pages, I'm trying to follow some video tutorials. I have already installed via nuget the entire Microsoft.AspNetCore.Mvc, but when I try to call it from the viewpage, using
@Component.InvokeAsy...
I'm using a ComboBox in a WPF application and when a function is activated, it loads a List<string> from a webservice to an on-screen property. My problem is that I can not make the ComboBox update update when this property is chang...
I am doing a txt file to save some information from a root user (username, password, name, cpf, email) in order, and I would like to know how do I read just the line that I would like, cpf or email or user.
I'm having trouble getting the true value of this XML:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>
I tried this way but I could not:
var ns = xDoc.Root.GetDefaultNamespace();...
Basically, I have a table (GridView) on an aspx page whose data is defined by TemplateFields. For example:
<asp:GridView runat="server" ID="grdProdutos">
<Columns>
<asp:TemplateField HeaderText="Produto">...
Kindly, does anyone know how I can move an image within a pictureBox without having to click the scrollbar ? What I want is to move the image, just clicking the mouse on it so I can drag it inside pictureBox .
This is the Form:...
My idea is to generate a search on my bank using the in clause through Dapper . For example:
select * from product
where CasNo in(@filtro)
Remembering that within this @filtro has a list of CasNo that is of type List<...
I'm trying to upload files via FTP (TLS), but I'm not successful because it always returns an error when my code executes "Connect ()". I have already tried using the FtpWebRequest, FtpClient, Tamir.SharpSsh, and SftpClient classes. Any of them...