Posts by SylvioT • 359 points
10 posts
-
1
votes0
answers49
viewsQ: Legacy application repository standard - ASP.NET MVC 5
I am participating in a project using ASP.NET MVC 5, I would like opinions to form a concept in which I can achieve good results with a good team productivity. What I have of interfaces: Irepository…
-
5
votes3
answers2609
viewsA: What is python’s " "?
Kaigogames, imagine the following the number 5 (decimal) is represented by 0101 (binary) and the number 11 (decimal) is represented by 1011 (binary) soon if an operation is being performed XOR you…
-
0
votes2
answers251
viewsA: Cors error with Larable 5.1
Fabricio, adds the class CORS app/Http/Middleware/Cors.php class Cors { public function handle($request, Closure $next) { return $next($request) ->header('Access-Control-Allow-Origin', '*')…
-
0
votes1
answer76
viewsA: Extension for Chrome - How to use the DOM on the site that is open
I have an extension for Chrome and I did something like this: document.addEventListener('DOMContentLoaded', function () { var btnLoginCI = createButton('Login CI');…
-
6
votes3
answers892
viewsA: Date and Time in Datetime format
You can use these two functions: date_create http://php.net/manual/en/function.date-create.php date_format http://php.net/manual/en/function.date-format.php $data = '17-04-2018'; $hora = '16:12';…
-
1
votes1
answer21
viewsA: Function that opens a given address by adding input value
I responded in your previous post... try using the target and the method GET. <form align="center" method="GET" target="_blank> <input type="text" placeholder="Faça sua pergunta" autofocus…
-
1
votes2
answers408
viewsA: Search result open in new tab
you can add an attribute in the so-called "target", would look like this: <form action="" method="GET" target="_blank"> ... </form> more information on the link >…
-
1
votes4
answers1320
viewsA: Long processes in C#
In the case of Timeout you can make the configuration on the web.config itself <system.web> <authentication mode="Forms"> <forms timeout="50"/> </authentication>…
-
-2
votes2
answers485
viewsA: Two parameters with String.Format in an Asp:Hyperlink
Have you tried? onclick='AbreModal(<%#DataBinder.Eval(Container.DataItem, "intid")%>, "123" )'
-
1
votes3
answers324
viewsA: Python - NZEC problem in SPOJ (br.spoj.com)
This happens when you try to access an invalid position if there are syntax errors in type conversion or something similar. Follow the most common mistakes:…