I develop an ASP.NET WebForms application and I need that if the user has authenticated in the browser with a Google account he can access the page otherwise.
Good afternoon.
I would like to know how I can show data in ComboBox . This data I look for in SQL and I show them in a DataGridView but I would like to show it in a ComboBox , this is what I have of code.
public DataTabl...
I'm doing a desktop application and I want to show the value of a variable on the screen inside the quotes this is my code
static void Main(string[] args)
{
int casa = 16;
Console.WriteLine("variable {{casa}}");...
I have the following code which I use to register images and pdf's, the problem is that up to the moment when I register for example two different images I save 1 but 2 times. And in the case of the PDF what I want is for me to save only one for...
How can I make my textbox accept only the 0 and the 1. Or only accept a character.
This is the code I have.
private void press(object sender, KeyPressEventArgs e)
{
if (Char.IsLetter(e.KeyChar))
{
e.Handled = tr...
I have a messaging class, in which valid if any required field is empty or business rules which information by a string variable comes to the presentation.
public class Mensajeria
{
Resto de código
}
My question is implementing CustomEx...
I would like you to guide me a bit with this. I am trying to consume an API Rest in C # and have an authentication where I must pass these parameters or values: username , password , client_id , client_secret , grant_t...
I have a Model called Question:
public class Pregunta
{
public int id { get; set; }
public string descripcion { get; set; }
public int peso_id { get; set; }
public List<int> roles_id { get; set; }
public int dimension...
I am implementing a client of a service that provides me certain classes through a WSDL.
In itself these classes build a structure a bit complex, but connecting to 2 service methods the answers are almost identical in terms of objects, with the...
I'm working on a WPF desktop application, Windows 10, Visual Studio 2015.
In which when going to the location of the video is played, I have the following code.
XAML:
<Window x:Class="ReconocimientoVoz.MainWindow"
xmlns="http://sc...