asp-classic

calling a C# function from asp page

I wrote a small function in C# that manipulates pdf files using itextsharp. Is it possible to call this function from a classic asp page? -Vivek ...

Pdf creation/manipulation from classic asp?

I'd like to do the following tasks on pdf files from classic asp get page count split pages save splitted pdf Is there a nice and easy library available? -Vivek ...

Double byte Unicode shown as 2 characters by classic ASP

Problem with Unicode in asp These two address are created using the same function from a single DB entry the only diff that I can see is that the top is written to the page directly the bottom is written via JS in an Iframe to the parent page this is was the classic ASP outputs and it is wrong Fxxxx Åsbrink RSG connexion AB Baggäng...

msxml3.dll error '800c0005'

Really weird problem, I have just moved all our sites to a new Win2008 64bit server with IIS7 (Was on a Win2003 IIS6) and have started having problems with PayPal Pro / PayFlow. A few of these websites are stores with SSL's and use PayPal Pro to process the payment - Since the move, intermittently I am getting errors like. msxml3.dl...

MS Access default value

I have a text column in one of my MS Access tables that is empty be default when a new record is inserted. The problem I have is that I can't seem to check whether this field is empty with EITHER equals Null or equals "" . For example, neither of these "reads" the field as being empty: If [Field] = "" Or [Field] = Null Then I've alway...

Getting ID of new record after insert

I'm just getting my head around insert statements today after getting sick of cheating with Dreamweaver's methods to do this for so long now (please don't laugh). One thing I'm trying to figure out is how to get the ID value of a newly inserted record so I can redirect the user to that page if successful. I have seen some examples whic...

Add a button and call corresponding function in asp page

I want to add a button to an asp page. The scenario is: If name returned from above function = 'abc' Then show button on button click call function 'A' Else End if Can anyone help me in adding this button and calling the function in the code. I have least knowledge of asp . ...

ASP to access programming

I have an issue where I need to take a value from a form page drop down. <option value="English"> (french is the other) and transfer via asp classic to an access database. In the database the Language field is a combo box with values of English and French. Basically I need the asp to turn on the right value in the combo box. What I use n...

IIS6 SSL Config - Have to log in twice (once for :80, once for :443)

I have a virtual folder containing an administration application, like https://www.mysite.com/alpha which requires SSL. In the IIS manager properties for the folder, under "Authentication and access control", Anonymous Access is disabled and "Authenticated Access" is set to "Integrated Windows authentication." When I connect to the s...

(ASP classic) Stop/Block execution of rest of code without interrupt Javascript execution

Hi, I am running in an issue similar to the one in this other thread and I'm getting short of ideas so I would really appreciate any help ! Here's the thing : We have an ASP application that uses session variables and has to deal with session merging due to multitabs (IE8). After many many many tries, I've came to the following impl...

cant edit access mdb files, keep getting asp error

hallo all. downloaded a forum from a web server to my computer so i can work on it. anyway the mdb files are locked or something like that and i keep getting this error: Error Type: Microsoft JET Database Engine (0x80040E09) Cannot update. Database or object is read-only. /forum/login_user.asp, line 168 the files are not read-only. i...

Issue with File Download HTTP Headers in IE, when passed through nginx reverse proxy

Setup: IIS7 serving ASP classic VB script code which generates a dynamic VSC page/file with headers to download. Response.ContentType = "text/x-vCalendar" Response.Expires = -1 Response.Buffer = True Response.Clear Response.AddHeader "Content-Disposition", "filename=" & strFileName & ".vcs;" Response.Write strFileContent Our IIS7 ser...

Doing a POST from an ASP.net page to a vendors classic ASP page. Possible?

I have to convert a few ASP pages (to ASP.net) that set values for hidden input values from a database and does a POST to an ASP page hosted on a vendors website. I already have found that ASP.net pages can post to webpage other than themselves... My question is in regards to compatibility problems with the sending end being ASP.net and...

is there any session server for classic asp? or can we manage multiple sessions between different machines and classic asp application?

hi , we have a classic asp web application which has divided into three parts and spread into three different web servers but we want to manage our sessions at the very first place of entering users into the site. as much as I know there is no official program or method for doing so in classic asp so I was wondering if somebody could h...

Getting started with JSON and the Yelp API.

I'm trying to use the Yelp API to get local restaurants depending on the user's latitude and longitude. The trouble is that I'm quite sure how to do this. Looking at the page that I need to retrieve the data from, it says that the type is text/plain. Can I use Ajax to do this or will I not be able to since it is a different domain? E...

Partial View on a different project

How can I make a partial view on a separate dll, and add it to a MVC project? There is any why to create the same ascx in a dll, and to work for a MVC project and a Webform project? Thanks! ...

Classic ASP on large memory server

I have a client with a large ASP app that apparently is fairly memory intensive. I’m helping them migrate to new hardware they have running Win2k8 R2. They have 4 physical servers with 32gb of RAM each. I’m making the assumption that ASP apps run as a x32 process. So I see that we have two options: On the application pool enable we...

How to debug asp page Visual Studio 2010 on IIS 7.5?

I have tried attaching the debugger to the IIS worker process and have a break point on the asp page. But it never hits the breakpoint. I am able to debug the aspx pages in the same site using the above process. ...

What causes an IIS recycle in classic asp?

I was wondering if anyone knows what could potentially cause a IIS recycle with a classic asp site. ...

Classic ASP - How to pass a variable instead querystring (refresh) via Jquery(no refresh)

Hello , i'm working on this application that has a calendar on a page that has a lot of request.form("var") inside. This is a monthly calendar and it has on the top previous month and next month . When i click now on next month i get an URL like: ?date=8/14/2010 My question is how to pass this value to the calendar via jquery with no pa...