The Resolve method is obsolete, and Microsoft directs you to use GetHostEntry . However when using GetHostEntry the exception occurs:
This host is not known
When I use Resolve there is no exception and the pr...
I'm having trouble checking a parameter in a relationship between the Historian and Login entities.
public class Historico {
public int ID { get; set; }
public virtual Login login{ get; set; }
public DateTime inicio { get; set; }...
I am developing software in C # to count the number of electronic anklets that go inside a box. This box has space to store 40 anklets. In the case of the Software I put 40 txtbox where each one represents the serial number of each ankle. As it...
I'm having a date conversion problem in WCF.
I get a Json a DateTime in Unix format
"\/Date(1477320927000)\/" - 24-10-2016 12:55:27.
Wcf receives this date as 24-10-2016 14:55:27. It gives a difference of 2 hours.
I tried to u...
I need to log into a site using asp.net web forms. I'm doing it this way. How could I redirect to the page after logging in?
protected void Button1_Click(object sender, EventArgs e)
{
var loginAddress = "http://spor...
I fill in a dataGridView via SQL and fill in a dataTable .
I would like to associate a bindingNavigator with this dataGridView .
I can not. Follow the code.
string arquivo = System.AppDomain.CurrentDomain.BaseDi...
I'm using hangfire with IIS in an ASP.NET MVC application with C #.
I have a Task running every 5 minutes, however the application is stopping.
This occurs in a variable period of time, sometimes it runs for 3 hours and sometimes for less tim...
I have TreeView , with some configuration items:
I would like to double click on a node it opens a specific form, the event of double-clicking and opening the form, is OK, the problem is how do I distinguish a node f...
I have in my wpf code a listbox with the name "lstBox" (left invisible), and inside it a listBoxItem with a label and a textbox. Outside the listbox, in the same window I have an "add item" button (clicking would make the listbox visible). I wou...