Posts by George Wurthmann • 4,415 points
170 posts
-
3
votes1
answer722
viewsQ: How to add a link column in Gridview?
I have the following code that generates my Gridview: protected void Page_Load(object sender, EventArgs e) { try { AlteracoesContrato alteracoes = new AlteracoesContrato(movimentacaoId);…
-
1
votes4
answers6919
viewsA: SELECT of month/year in DATES
You can also use the BETWEEN: SELECT * FROM FRCAST WHERE DATA_ID between TO_DATE('01/07/2010','DD/MM/YYYY') and TO_DATE('31/07/2010 23:59:59','DD/MM/YYYY HH24:mi:ss');…
-
2
votes3
answers1224
viewsA: C# - Close Form without Stopping Application
When you want to end the use of your application completely use the Application Exit, you can put it in the event Formclosed of the form(s) (s): private void Form1_FormClosed(object sender,…
-
1
votes1
answer159
viewsA: Problem with Mysql Text field
In the Database the line break characters and spaces are maintained, but if you are playing in HTML you have to somehow store the break formatting as paragraphs or blank lines: <p>Paragrafo de…
mysqlanswered George Wurthmann 4,415 -
2
votes1
answer129
viewsA: Identify website pages with broken HTTPS padlock
This tool will point out SSL issues among other application security issues: https://www.qualys.com/suite/web-application-scanning/ Her is not free, but it’s the only one I’ve ever used. I can’t…
-
2
votes1
answer724
viewsA: Problem with conflict between IIS and Xampp
Open the file httpd.conf (apache/conf/httpd.conf) in the notepad and change the lines: Listen 80 and Servername localhost:80 replacing the 80 with a new port, which is not in use - like 89, for…
-
1
votes1
answer1701
viewsA: How to create a chart in ASP.Net
I use in some projects the MS Chart for some simple charts. If you want to know other options Google Chart and Chart js. are also widely used. To use MS Chart Control you will need the classes:…
-
2
votes2
answers1664
viewsA: UTL_SMTP: Sending Accents
I had the same problem and I was able to solve it in the same way directed by Davi Melo, but I needed some adjustments and so I decided to post this answer to help someone else who goes through it.…
-
1
votes1
answer256
viewsA: Jquery datepicker blank popup
I changed the version of my jQuery and Bootstrap to the same one I had in another project that already used datepicker and worked. The version I posted was 2.2.3. Note: Note the @Kingrider comment…
-
1
votes1
answer256
viewsQ: Jquery datepicker blank popup
My project is in . NET MVC 4 and I’m having trouble calling the datepicker. It is applied but the popup is small above the field and blank. I want to use it in that field: @Html.TextBoxFor(model…
-
0
votes1
answer97
viewsA: Highlighting does not work in Razor MVC 5 views
The only way I could solve the problem was by installing VS2013. Maybe the 2012 reinstallation worked because on a machine that had this version with update 5 all features of MVC5 worked, but as I…
-
1
votes1
answer97
viewsQ: Highlighting does not work in Razor MVC 5 views
I’m with a Razor ASP.NET MVC 5 project that was created on VS2013 on another computer. Loading it on my computer with VS2012 Highlighting and Views Intellisense (cshtml) does not work. I realized…
-
2
votes1
answer407
viewsQ: Solution . Net with Membership does not connect to oracle base
I am trying to run a project on my computer but it accuses error in string: Oracleconnection.Connectionstring is invalid The same project works normally on the computer where it was started. The…
-
1
votes2
answers12423
viewsQ: Oracle Insert of multiple lines
I need to input multiple records into a table where only one of them will change, the others are constant. For example: Insert into processo (ID, status, descricao) values (1, 'X01', 'lorem ipsum…
-
1
votes2
answers4255
viewsA: Tables are not shown in Oracle SQL Developer
I got a way to access all the tables and the rest of the objects I couldn’t see. The user I’m logging in is associated with the 'x' scheme that views few BD objects, but has access to other objects…
-
0
votes2
answers4255
viewsQ: Tables are not shown in Oracle SQL Developer
I have several connections configured on TNSNAMES.ORA, and for some I cannot see any table if I expand the folder. The user I am connecting has access, because I do the queries and insertions…
-
6
votes1
answer323
viewsQ: Developing in Python with Visual Studio 2013
I want to develop in Python using Visual Studio 2013 or 2015 because I’m already used to the IDE, but I have no experience with the language. In the English OS there is a question that lists Visual…
-
1
votes1
answer279
viewsA: Do not let user have access to script data
Python is an interpreted language, so , it is very difficult to block access to source code. Even if you use a Converter exe as py2exe, the executable layout is known as it is only compressed into a…
-
10
votes2
answers910
viewsQ: Count the amount of characters changed in an input field
On a given page for changing registered data, in one of the fields you need to limit the number of characters that can be changed. There are 2 fields inputs and one of them is hidden by storing the…
-
1
votes2
answers204
viewsA: How do I type this url into . htaccess to get a friendly url?
I’m not an expert in PHP, but I think it solves. Put in your .htaccess: RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^(.*)$ $1.php…
htaccessanswered George Wurthmann 4,415