0
votes
1answer
14 views
Getting empty recordset for a particular column during code run
Hi,
I am using an Inline SQL statement Select * from table where column='' in classic asp application. This is a dynamic sql. Based on the return values in the recordset I am displaying some fields …
1
vote
2answers
15 views
Post a message to Twitter using classic asp
Hello,
I have a small problem. I am busy trying to get messages from a classic asp website to twitter, but I can only find examples of how to do this using php and all other kinds of different …
1
vote
2answers
42 views
jquery Flot and a Database
I have downloaded the Flot library and have been having a play around.
I understand how the Flot library works and how to draw simple graphs. The bit I am struggling with is pulling data from a DB …
1
vote
2answers
37 views
What’s the difference between “<%” and “<%=” in embedded VBScript?
I am working on a code base which as VBScript code embedded in HTML. I've noticed the following two different tags around said lines of code
<%= MyFunc(val1) %>
and
<% MyFunc(val1) …
1
vote
6answers
64 views
Multiline String In Classic Asp
Hi guys,
is there any possiblity to get multiline string in classic asp (I think vbscript is the language)?
I want a multiline string like in python or groovy:
def str = """hello
I am a
multiline
…
0
votes
1answer
14 views
Naming a function for provided localized strings
I'm putting together a list of function names for a function which would return back a localized string for a website I am working on. I'm still undecided what would be a good name for this function. …
1
vote
0answers
30 views
Volatility of query results in asp
I have seen a couple of instances now where some legacy code I'm working on exhibits what seems buggy behovior and I wonder if I just don't understand something.
rsCaspio.Open sql, dbCaspio, …
0
votes
1answer
40 views
Classic ASP checkbox question
I understand that if the all the inputs being entered as a, b, and c and all the checkbox are checked then the output would look like this.
response.write( request.form("a1") ) = a, b, c
…
0
votes
1answer
19 views
How to reduce timeout period when sql 2005 database unavailable
Hi,
I have some ASP (Classic) code that queries a SQL 2005 Express database. I'm currently handling programmatically if this DB goes down by handling the error when someone tries to connect and …
1
vote
2answers
47 views
HTTP GET Request, ASP - I’m lost!
Hi,
Using VBScript with ASP I am trying to set up an HTTP GET Request which will visit a page which in turn generates a line of ASCII (non-HTML). I then want to extrapolate that ASCII line which will …
1
vote
1answer
33 views
ASP page not receiving POST parameters
Hi all, I am writing a small application in Classic ASP. I have a page which has a form, which posts to a second page. Included with the form's POST, are file uploads, hence the need for a POST …
0
votes
3answers
62 views
How to search a numeric value in a database
Let say i have querry structured like below which indicates dates
search.asp?date=091210
I want to find each record that includes "0912" string how can i inquire it on the link structure.
0
votes
5answers
42 views
Classic.ASP calling .NET component via COM
I have a Classic-ASP application running in IIS 7 (integrated mode) that needs to call a .NET library that was properly registered as COM.
Everything seems to work find, but I cannot debug the …
2
votes
3answers
58 views
HTML form values adding commas in Classic ASP
I have a classic ASP page that submits back to itself. Strangely, the values being returned from the selects have commas being added to the ends of them. Has anyone run into anything like this before? …
1
vote
1answer
24 views
How to determine the language currently in use for browser in classic ASP?
Is there ASP code which can retrieve the users current language? In javascript I know this works...
if (navigator.appName == 'Netscape')
var language = navigator.language;
else
var language = …
