-
as seen on Stack Overflow
- Search for 'Stack Overflow'
How do I loop through an array and call a function on each pass?
At the minute I'm trying the following...
if Request.Form("authorize") <> "" then
dim post_ids, ids
post_ids = Request.form("authorize")
ids = split(post_ids, ",")
For i = LBound(ids) to UBound(ids)
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a classic ASP site I'm maintaining and recently we wanted to do special rendering actions if the visitor was coming from one specific set of websites. So in the page where those visitors have to come through to get to our site, I put a simple line setting a session variable:
<!-- #include…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've had a set of legacy pages running on my IIS7 server for at least a year. Sometime last week something changed and now this line:
Response.Write CStr(myRS(0).name) & "=" & Cstr(myRS(0).value)
which used to return nothing more exciting than the string: 'Updated=true' (the sproc processing…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
We are running visual studio 2008 (with the service pack) and having troubles when we are debugging an asp classic website.
We can attach to the w3p process and debug just fine. breakpoints work, we can view variable values. The difficulty arises when it comes time to detach or stop the debugger…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I need to convert HTML to PDF on the fly from a hosted ASP classic page.
WkHtmlToPDF is great, but unfortunately requires installation on the server which is not possible in this case.
Is there something out there that would do this?
>>> More