asp

Getting results of dotnet page into classic asp page

hey guyz, i need to ask you that is it possible that i can get the code of the page which is built using dot net into classic asp page actually i am accessing a webservice for which i need to have dotnet. so i want to run that service in asp.net get or parse results and then i want to show them in a classic asp page. is it possible, if...

appostrophes coming in as �

i am reading in html from a file and displaying it on a web page: when i look at in the source i see: The Club’s summer junior programs but it shows up as: The Club�s summer junior program do you know whats happening here and why the � is shwowing up? ...

Is there a way to make ASP page update in real time, like Ajax?

Is there a way to make ASP page update in real time, like Ajax? ...

asp to asp.net migration

i am migrating a website from asp to asp.net. i have some asp pages that have this in them: <!--#include file="inc_search_form.asp" --> what is the translation for doing this in asp.net? ...

Embed asp page inside of an asp.net website

i have a current asp website that i need to keep in sync but it has stuff like this: <!--#include file="inc_search_form.asp" --> i can't change this file at all as it exists in another asp website so i can't break that compatibility.. is there anyway i can just shove this same file into my asp website and have it work the same? ...

asp includes with absolute path

is there anyway to do a #include with a file listed as an absolute path? i am trying to include files from other websites (outsite the root of the sight that wants to include it) any other suggestions? ...

Migrating from custom ASP & ASP.NET applications to PHP (Typo3)

So we've hired a company to migrate our three websites from custom built CMS solutions to Typo3. One of our sites is still in classic ASP while the other two are in ASP.net 1.1 & 2.0. Typo3 wasn't my choice, but the choice of those with the purse strings. Anyway, the migration of the sites is progressing but I have a problem that nobo...

redirecting postdata

Hi there. I've recently upgraded a page on our server from classic asp to asp.net The page recieves postdata and saves it to a file. The page is used by many of our clients and the url (to the asp page) is hard coded into their software. This means that i cannot simply swap the old page out for the new one. I'm trying to find a way to ...

If Statement Not Working as Expected in ASP Classic

I have an if..else statement that will display whether or not the student is qualified to go for competition based from the value in database. But, my code is not working correctly. My code is as follows: <% If (rs_view.Fields.Item("StudentStatus").Value="OK") Then %> <strong><font color="#3300FF" size="-1" face="Arial, Helvetica, sans...

How do continuously update data to an asp page?

Hi, I have an asp page based on a very simple database. It references a single table of probably 30 records and maybe 12 data fields and everything works great as I am only uploading a new database every week or so. I have a special circumstance where I would like upload new data to the database and display automatically on the page ev...

Classic ASP not working on Windows Vista IIS7

I have just moved from Windows XP Pro to Windows Vista Ultimate. I installed IIS and all sub categories (including Classic ASP). I have a few websites in my wwwroot folder that are Classic ASP sites. When I try to view them through localhost, I keep getting an error message: An error occurred on the server when processing the URL. P...

How to uninstall IIS 7 under WOW64?

In a Web server installer that I'm maintaining, we keep track of whether or not the installer had installed IIS 7 and/or ASP (under Vista or later) and save an appropriate value to the Registry if so. During an uninstall, if that value is there and no other Web sites are using IIS on that machine, the user is asked whether or not IIS/ASP...

Add data into database using IF Statement

Hi there, I would like to add data into database using if statement which based on certain condition..but my codes below doesn't work..need your advise. <% If (rs_view.Fields.Item("CGPAOverall").Value>="2.00") Then %> rs_view("Status")="Proceed" <% Else %> rs_view("Status")="Stop" <% End If %> I would like to save the result direc...

How to overwrite the output statement? Should I use more IF statements?

Hi there, Here the story goes... First of all, the system will check either the user is qualified or not qualified to go for competition by checking their status in database. Then, the user can check their status by login to the website. If the user qualified, the system will display 'You're qualified to competition' and if the user no...

where does asp and iis 6.0 get its date format

I've found a dilly of a pickle with a new web server. We have a new web server that is displaying dates differently than our old web servers. We are running asp classic web pages on IIS 6.0 with windows server 2003. We have logged in as an administrator and set the regional settings as appropriate and then applied the settings to curr...

How to send email from ASP application on Windows 2008 Server

My ASP, classic ASP application is giving me a sever error on a Windows 2008 Server. It works fine on Windows 2003 server. The error is a 500 internal server error. Does CDO not work on Windows 2008? EDIT THe error is: The transport failed to connect to the server. Here is my mail function: function SendMail(mailFrom, mailTo, mailSub...

ADO Issue, "@IsNew" parameter causing no results to be returned?

This is ADO in classic ASP. I have a stored procedure with a parameter @IsNew of type int. I can call it via SQL: EXEC [dbo].[SearchVehicles] @WebsiteName = N'AMSVans', @SortOrder = N'Year DESC,Status ASC', @Statuses = N'Unsold', @IsNew = 1 And the return sets are exactly as expected. However, when I attempt to use it in my ...

What's wrong with this ASP connection string?

I'm at the end of my rope on this. It should be so simple. I just need to know what's wrong with this connection string: dbc.open ("Driver={SQL Server}; Data Source = ServerName; Initial Catalog = InitialDB; " "User ID = Username; Password = Password;") I get this error when running that line: [Microsoft][ODBC Driver Manager] Da...

It is possible to connect two xml's together

hi friends, I have some questions , because i am not good in XSLT... For example, I have 3 types of xml from three companies XML 1 (Company 1) file1.xml <HotelList name="Company1"> <Hotel><HotelCode>C1004</HotelCode> <HotelName>Hotel 4</HotelName> <Price>100</Price> </Hotel> <Hotel><HotelC...

How create XML from XML using XSL ?

hi friends, How create XML from XML using XSL ? I try like this.. but i not get a result Test.xml <Address> <name> Alex</name> <lastname>Mathew</lastname> </Address> Test.xsl <?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; <xsl:template match="/"> ...