Posts by MarceloBarbosa • 221 points
8 posts
-
0
votes1
answer51
viewsA: IIS7 and ASPX Windows Server 2008
After some research I found that possibly a configuration is missing in IIS. cmd -> right click -> Run as administrator C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -i…
-
1
votes2
answers367
viewsA: ASP - Printing JSON without last comma and double quotation marks
Instead of writing directly, store the result in a variable, and at the end of the process, remove the comma at the end and then write the result. Behold: <!--#include file="conexao.asp"-->…
-
1
votes1
answer270
viewsA: How to distort an image using HTML 5 Canvas
To do this requires a very large job as it requires a point-to-point modification. Look at this demonstration I could find DEMO Source: https://stackoverflow.com/questions/22377416/how-to-warp-image…
-
0
votes1
answer136
viewsA: ASP and paths in include
By default, the use of "Parent Paths" on IIS is disabled. You can enable or disable the use of "Parent Path" using IIS Manager. Open IIS Manager and navigate to your site or application that you…
-
2
votes1
answer543
viewsA: Connection provider not working in Vbscript
From what I see in your code, you’re running the Stored Procedure sp_login, and after executing it trying to capture an id Rs1("id"). What happens is that "apparently" (by your information) your…
-
5
votes3
answers3586
viewsA: It is possible to assign the value of a Javascript variable to an ASP
Javascript is processed by the Browser and ASP is processed on the server before delivering to the user. Under these conditions, the answer is No, it’s not possible. You would have to use Javascript…
-
1
votes2
answers405
viewsA: Map path of another Project
It is important to remember that the path should be the physical directory on the server as for example: Server.MapPath("C:\Inetpub\wwroot\SeuProjeto\Imagens") Also remembering that ASP 3.0 does not…
-
2
votes1
answer834
viewsA: How to round percentage?
Normally calculate the percentage in ASP and use the function Round round. Example 1 <% response.write(Round(24.13278) & "<br />") response.write(Round(24.75122)) %> Upshot: 24 25…