Posts by 2madera • 768 points
18 posts
-
0
votes2
answers601
viewsA: Problem with friendly url
Try it like this: RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ sessao.php [L,QSA] You really need this line below?…
-
19
votes2
answers3085
viewsQ: How to do a spell check in C#?
I need to do an analysis of the words contained in a database. The analysis consists of promoting a spell check only, showing a report on the screen (gridview) with incorrect words. I never…
-
1
votes2
answers415
viewsA: How to use css Calc() in safari?
Check the compatibility This and other properties can be viewed through the site Caniuse width: -webkit-calc(100% - 100px); /* Chrome */ width: -moz-calc(100% - 100px); /* Firefox */ width:…
-
5
votes4
answers178
viewsA: Why do my webfonts only work with Chrome?
Check whether other source files can be accessed directly by the browser, your server may be experiencing missing declaration issues mime-type. Could be the file .htaccess that is blocking access to…
-
1
votes2
answers682
viewsQ: View of XSD
In our life of development we always face various challenges. Whenever I needed to visualize an XSD in the form of a diagram, I used the program XSD Diagram, see the image below: However, for a few…
-
3
votes3
answers1115
viewsA: Classic ASP out of IIS? Windows x64
Utilize Apache ASP But it only runs the classic Asp, and can be used on a linux.
-
4
votes2
answers231
viewsA: Removing comments in the HTML sent by the server
For HTML code files In case you use Asp.NET Use the Asp.Net own comments and they will not appear in HTML. <%-- É de mais de 8000!!! --%> For the JS files I use this script to concatenate and…
-
3
votes3
answers1552
viewsA: How to download an image from the internet with C#?
I think the way down rolls, and easier for (int i = 10; i <= 30; i++) { string nomeArquivo = @"c:\download\arquivo_" + i + ".jpg"; using(WebClient cliente = new WebClient()) {…
-
7
votes2
answers787
viewsQ: How to build a complete XML in T-SQL?
I am working on a project that returns an XML field, so far not bad. The problem arises when I have initial data coming from a query and intermediate data coming from another query. I tried to solve…
-
2
votes3
answers2237
viewsA: Construct string with special characters
Maybe you should rewrite your code Take a look at this class: iTextSharp.text.ListItem With her you have exactly what you want. Take the example: it.List list = new it.List(it.List.UNORDERED, 10f);…
-
1
votes3
answers2237
viewsA: Construct string with special characters
A String is nothing more than a Char Array: char[] caracteres = {'0x20AC', '0x20AC', '0x20AC'}; string palavra = new string(caracteres);
-
0
votes3
answers36150
viewsA: How to use Mysql on Android
You will have to build an API (Usually uses json/Rest) so that you can communicate with the server, and it can process the data for you.
-
1
votes1
answer2242
viewsA: Visual Studio Express 2013 for Windows Desktop installation error
If your file is wdexpress_full.exe Check that the MD5 is equal to this: b87dd4ded93751c69d4bc82836544b5f
-
0
votes2
answers1675
viewsQ: PHP framework with greater similarity to Codeigniter?
Which of these frameworks below have greater similarity to Codeigniter, so I can have the smallest learning curve? Laravel Cakephp Zend
-
2
votes2
answers2854
viewsA: How to view a PDF in the browser with an ajax request?
It’s simpler than it looks. I believe it should be a button click event, if yes, the code snippet that makes downloading the file can be a simple location.href =…
-
5
votes3
answers8147
viewsA: How to fix javascript encoding problem?
Check in your text editor or ide, what is the default encoding type for new files, after you check you will see that it should be UTF-8 or iso-8859-1 (also called Windows-1252 times). If the file…
javascriptanswered 2madera 768 -
7
votes3
answers3604
viewsQ: How to make a background of an element in SVG in a decent way?
I develop websites that have the company logo on SVG, but wanted to know how to test easily or force to replace the SVG when the browser does not support. So I could have done the logo on PNG to…
-
-2
votes3
answers1814
viewsQ: Installation of Laravel
It is possible to install the Laravel in any shared accommodation? Or the requirements for installation are very specific.