Posts by Gabriel Bastos • 133 points
7 posts
-
0
votes1
answer795
viewsQ: Play private videos with the Youtube API
Good afternoon people, I’m trying to make an integration with the Youtube API, where the videos can be played by an iframe on my page, which by the way is in ASP.NET. The documentation gave me this…
-
3
votes1
answer243
viewsA: How to separate emails by semicolon in SQL Server?
Just break the emails using STRING_SPLIT and then an Index with the result of SELECT, thus: INSERT INTO EMAILS(emails) SELECT A.value AS EMAIL_QUEBRADO FROM EMAIL X OUTER APPLY STRING_SPLIT(X.email,…
sqlanswered Gabriel Bastos 133 -
-1
votes4
answers104
viewsA: Hover does not work
Just you put a target for the Hover, like this: .csgo-player-link:hover .csgo-player-info{ display:block;}By default target is the element itself.
-
0
votes1
answer54
viewsA: What is the best practice for cleaning an html?
you can use Jquery this way: $('#suaLista li').text(''). In terms of performance the browser will not even feel pain for any of the ways :)
-
1
votes3
answers479
viewsA: Question how to link between css and html
if your css file is in the same folder(location) as your html just call it this way <link rel="stylesheet" href="meuArquivo.css" />. If it is in a subfolder just navigate it with "/". Example:…
-
4
votes1
answer69
viewsQ: Parameters for encrypted columns
I am trying to create a database to save a user’s data to the SQL SERVER database, but the table has columns encrypted with Always Encrypted, resulting in a conflict error. I have tried to change…
-
0
votes1
answer204
viewsQ: Inclusion of files in Visual Studio projects
Good evening. I wonder if it is possible to include a file in a Visual Studio project by programming at runtime ?…