[Solved] What language is he using?

It does look like some template engine rather then separated language. You could read about the available template engines here. They essentially exchange the text encoded information to the underlying data, in your case I don’t know which particular engine it is, however it may be something made especially for this task so it is … Read more

[Solved] Need Classic ASP for dynamic declaration of request inputs to add database record [closed]

The answer to “is this even possible?” is NO! There is no alternative language or method that could possibly work to cater for 64 columns of varying number and especially not one that can increase the number of columns in this case. While it may be possible to dynamically write a varying number of request … Read more

[Solved] Why the program not run correctly?

Like AnthonyLeGovic said: you need to be rigorous when programming here is what you are looking for: <html> <head> <title>test</title> <script language=”javascript”> var numRand = 0; var numGuess = 0; var numTry = 1; function setRand(){ numRand = Math.floor((Math.random()*100)+1); numTry = 0; alert(“done”); } function guess(){ var msg = document.getElementById(“message”); numGuess=Number(document.getElementById(“guess”).value); if(numGuess>numRand){ msg.innerHTML = “lower … Read more

[Solved] Incorrect syntax near ‘,’ [closed]

What is this little snippet: … p7,ex8,p8,,p3,p4,p5 … ^^ meant to be? That’s a rhetorical question by the way, since at least one commenter didn’t understand that 🙂 That’s where your trouble lies. In fact, since you have 24 column names (excluding the empty one between the commas) and only 18 values to be inserted … Read more

[Solved] How to execute POST using CURL

from a basic search i found how to do this: $curl –data “responseCode=jorgesys&publication_id=magaz234rewK&version=1.0″ http://mywebsite.com/appiphone/android/newsstand/psv/curl/posted.asp then i have as a result: { “responseCode”: jorgesys, “publication_id”: magaz234rewK, “version”: 1.0 } solved How to execute POST using CURL

[Solved] Passing variables in classic ASP

You should think of the page as being built into one contiguous page, so that if you include a number of .asp files they will build up your finished page. For instance, if you have three files: File_1.asp <h1>Hello, World!</h1> File_2.asp <p>This file will be included too!</p> File_3.asp <%Dim version version = 1.1%> …and include … Read more