0
votes
1answer
40 views
Windows Identity Foundation(WIF) - Does it work with legacy ASP?
I've seen a bunch of examples getting ASP.NET to work with WIF, but what about some of the old legacy ASP applications? We've got some sitting around our Intranet and I'm curious if the old code will …
0
votes
3answers
59 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.
1
vote
2answers
34 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 …
0
votes
1answer
24 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
1answer
18 views
Update config file with classic ASP
I have a configuration file that i would like to update with classic asp.
Lets say the conf file looks like this:
[Parameters]
param1 = 'foo'
param2 = 'boo'
param3 = 'moo'
param4 = 'choo'
What I …
0
votes
2answers
87 views
Does anyone use Fortify 360 with Classic ASP? a Header Manipulation vulnerability story
Good morning, everyone.
I'm on a short-term contracting gig, trying to patch some vulnerabilities in their legacy code. The application I'm working on is a combination of Classic ASP(VBScript) and …
0
votes
3answers
61 views
Can you declare a variable in ASP classic like this?
I am trying to see if this can be done in classic ASP:
Dim myVar
myVar = <<< END
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
…
0
votes
2answers
45 views
Eclipse – ASP classic plugin
Where can I find an Eclipse plugin for ASP classic?
1
vote
2answers
14 views
Register managed assemblies with COM without using the GAC
I'm wondering if it possible to register assemblies with COM without having to register it with the GAC. We need to deploy some .net libraries that are exposed to classic asp using a CCW. But …
0
votes
5answers
34 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 …
1
vote
2answers
46 views
ASP Menu driving me insane
Hi there,
I am trying to create a menu using ASP (I have never used ASP before, im a PHP man) using values stored in a database.
basically the html layout i want is as such:
<ul>
<li>
…
1
vote
1answer
21 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 = …
2
votes
1answer
22 views
ASP Readline non-standard Line Endings
I'm using the ASP Classic ReadLine() function of the File System Object. All has been working great until someone made their import file on a Mac in TextEdit. The line endings aren't the same, and …
5
votes
3answers
2k views
Remote Debugging Server Side of a Web Application with Visual Studio 2008
So, I've read that it is not a good idea to install VS2008 on my test server machine as it changes the run time environment too much. I've never attempted remote debugging with Visual Studio before, …
0
votes
1answer
33 views
How to get Column name in Classic Asp using RecordSet?
Hi,
I am displaying data in a web report from table using Recordset.
This works fine upto 5000 records but fails while more then 5000 records.
Recordset.Fields.Count gives Zero (0).
Please let …
