Posts by Gilberto B. Terra Jr. • 310 points
16 posts
-
1
votes1
answer110
viewsQ: Xamarin Firebase Auth does not install by Nuget
Good morning friends. I’m starting a project in Xamarin Forms for iOS and Android, and will use Firebase for Authentication (Xamarin.Firebase.Auth). But when selecting in the package manager (Nuget)…
-
1
votes1
answer2812
viewsQ: Configurations environment timezones Django postgres linux
Good morning to all. I have a website (Django) in a Linux hosting service with SQL Postgre bank that is in New Jersey (USA). Users are in Brazil, therefore I have a difference of Timezone. I’m sure…
-
1
votes2
answers818
viewsA: HTML - Overlay a ul to an img
I think your doubt really comes down to css background-image background: url("imagem-exibida-background.jpg") no-repeat 100%;…
-
1
votes3
answers137
viewsA: Access to pointer on main
Just to better understand, pointers are useful when a variable has to be accessed in different parts of a program. Your code can have multiple pointers "pointing" to the variable that contains the…
-
0
votes4
answers1052
viewsA: How to mount 3-column CSS mosaic?
You can separate "these differences" into different . CSS files: <link rel="stylesheet" media="(orientation: portrait)" href="portrait.css"> <link rel="stylesheet" media="(orientation:…
-
0
votes2
answers147
viewsA: Does not work when pressing certain sequence of buttons, with js and html
$('#CadastroLocalidade a.Cancelar').click(function() { Element ID is wrong #Registration should be #CadastrarLocality
-
0
votes2
answers2106
viewsA: How to calculate time intervals in excel
Lucas, this is easy, just understand how it works. I will pass a link that contains very simple examples for you to understand the conditions in Excel and adapt to your case. Remember that to get…
excelanswered Gilberto B. Terra Jr. 310 -
1
votes2
answers2773
viewsA: Run more than one project in Visual Studio
A manual way would be to run a project, then go in Solution Explorer and right-click on the other project, choose the options Debug > Start new instance
visual-studioanswered Gilberto B. Terra Jr. 310 -
1
votes3
answers6557
viewsA: Get logged in user
Yes, using the method .Getuserid() For the method to be available directly, you need to use: using Microsoft.AspNet.Identity; After that you can get the login user id: User.Identity.GetUserId();…
-
1
votes1
answer315
viewsA: What is the difference between SCRIPT_FILENAME and REQUEST_FILENAME?
SCRIPT_FILENAME : It is the name of the generally known CGI variable REQUEST_FILENAME : It is the appropriate counterpart of REQUEST_URI (which contains the value of the Uri field of request_rec).…
-
5
votes1
answer2479
viewsA: Open Source E-commerce in ASP.NET
You need to analyze which feature of your project to make the right choice, there are options. I will post options, some opensource. http://www.nopcommerce.com/ https://www.smartstore.com/en/net…
-
1
votes2
answers1911
viewsA: Mysql - Search number in a string
Mysql SELECT * FROM tabela WHERE campo REGEXP '^[0-9]+$'; SQL Server: SELECT LEFT(subtexto, PATINDEX('%[^0-9]%', subtexto + 'texto') - 1) FROM ( SELECT subtexto = SUBSTRING(Nome_Campo, pos,…
-
-2
votes1
answer170
viewsA: Classic Asp Development: COM, how to use?
Examples: Interoperability with COM constituents Using existing COM components Creating COM components Step-by-step creating a component in VB Creation of an Activex control (COM) WITH: The…
aspanswered Gilberto B. Terra Jr. 310 -
0
votes1
answer162
viewsA: How to direct each user to their page corresponding to their access profile using Asp.net Identity with roles
Redirect by checking the User Role in the Accountcontroller login method? UPDATED switch (result) { case SignInStatus.Success: if (User.IsInRole("Master")) return RedirectToAction("Index",…
-
1
votes1
answer232
viewsA: Filling in masked input with zeros
Using Javascript only String.prototype.reverse = function(){ return this.split('').reverse().join(''); }; function mascara(campo,evento){ var tecla = (!evento) ? window.event.keyCode : evento.which;…
-
2
votes2
answers6514
viewsA: Mask in input field
Simple example using Javascript String.prototype.reverse = function(){ return this.split('').reverse().join(''); }; function mascaraMoeda(campo,evento){ var tecla = (!evento) ? window.event.keyCode…
javascriptanswered Gilberto B. Terra Jr. 310