Posts by ricarela • 79 points
8 posts
-
2
votes1
answer431
viewsA: SQL Server 2012/BCP crashing - Unexpected EOF
Tells the line break in the last column. 41 SQLCHAR 0 14 "\r\n" 41 VL_DES_OUTRAS
-
0
votes3
answers144
viewsA: How to check if the user is currently online?
I had a problem from that time and I did the following: I created a table to inform users who log in to the system (it even serves as an access log). Well, each "logged in", the table receives a…
-
0
votes2
answers457
viewsA: Automated backup in SQL Server Express
I am an active backup user, so I insist on this post. I always work with at least 2 environments: dev and Prod (also for database). I just bring to production what’s cool in dev. I keep backups of…
-
1
votes1
answer269
viewsA: Optimize printing of great SQL-Server results through ASP
One way out is to use the response.flush inside the loop. "Seven" response.buffer=true at the beginning of your code. In the loop response.flush to write the content of the script every step of that…
-
1
votes2
answers804
viewsA: Problem with timeout in classic Asp
You can try architecting the generation of this graph using consolidated tables. This would avoid calculating every time you need to generate it. You can stipulate a "timeout" for your script:…
-
1
votes2
answers5074
viewsA: Encoding ASP Classic
When I look at ASP pages I check two things: the script formatting (page .Asp - if you have ANSI, UTF...) and the script encoding (Response.charset). Use for both UTF-8 configurations.
-
0
votes1
answer85
viewsA: how to open a new page by clicking an element in a table
You can use the HTML feature itself, as shown below: <table> <tr onclick="window.location='página destino aqui'"> <td></td> </tr> </table>…
answered ricarela 79 -
2
votes5
answers3306
viewsA: Form submission security in HTTP header
We had a class on Information Security with these answers.I would like to contribute an experience: the fact that we traffic data via http makes any system fragile. Some time ago I had a problem…