Posts by Ewerton Dutra • 69 points
7 posts
-
0
votes0
answers51
viewsQ: C# files I need to send to the client (put in an installer for example)
Good night, Which files are required in my EXE distribution? The briefcase pusblish is because I clicked to publish once to test and now it is always generated every Debug or Release (If someone…
-
1
votes2
answers111
viewsA: How to send data to PHP in real time?
Good morning, Come on, first to use the ajax you need to do: $.ajax({ method: "POST", url: "php/calcula-nome-do-arquivo-php-que-vai-executar-sua-tarefa.php", data: { token: currentToken } })…
-
2
votes3
answers1361
viewsA: C# Manipulate Postasync Response
I got it simple: ... var response = client.PostAsync( "https://apilink.site/estabelecimento/auth/entrar", new StringContent(jsonEnvio, Encoding.UTF8, "application/json")); var jsonResposta =…
-
1
votes3
answers1361
viewsQ: C# Manipulate Postasync Response
I have the following code: string json = new JavaScriptSerializer().Serialize(new { email = textBoxLogin.Text, password = textBoxSenha.Text }); using (var client = new HttpClient()) { var response =…
-
0
votes2
answers203
viewsA: App novice. Where to start?
If you were to begin I would indicate the https://flutter.dev/ Besides being a novelty, is settling very well in the market and besides this has many plugins You can search at the following address:…
-
2
votes1
answer109
viewsA: How to make input mandatory?
to be clear the input would look like this: <input type="email" required id="user_id"> Remembering that to be validated accurately is inside a form I put the required in another position to…
-
0
votes1
answer110
viewsQ: And I have a question regarding select in sqlite bank in WP
I started using the Sqlite database on Windows Phone. And I have a question about select in Sqlite bank. /* List items = null; items = App.db.Query(“select Nome from Usuario”); ListBox.ItemsSource =…