I recently upgraded a web server from IIS6 to IIS7 for a classic asp application and now experience a bizarre error. In the IIS6 set up there was a custom 500-100 page that functioned properly by capturing errors and delivering an email with error code, error source and error type values. That same structure was set up on the IIS7 mach...
From the answers to this question it appears there's a file somewhere on our server that's been saved with the wrong encoding.
I've seen this happen before - most often when pasting from Word into Visual Studio, when "smart quotes" can interfere with Visual Studio's encoding settings when saving the file.
Thing is - the problem I'm hav...
Field = "columnName"
value = '2,4'
query = ""&Field&" in("&value&")"
here the query will be : columnName in('2,4')
but i want it to be : columnName in(2,4)
how to remove the single quotes
Please help ASAP
...
I'm using visual studio 2008 for a classic asp application. Will I be able to upgrade to visual studio 2010?
...
I upload image files using aspupload component. I was wondering if its possible to upload flash files with a component as well.
...
I am trying to concatenate image url (string) with img tag but i am not sure how to put " after src=. Please help to concatenate this.
response.write("<img src=" & '"' & rs("ProductImage") & '"' &" /><br/>")
...
I need to get access to some server variables like APPL_PHYSICAL_PATH from the the Global.asa file. I can do this on any page of my site using the Request object as follows...
Request.ServerVariables("APPL_PHYSICAL_PATH")
But I don't seem to have access to the Request object within the Global.asa file. Is there an equivalent call I ...
I'm trying to add an image to a generated html word document that is embedded in a classic ASP page. The code looks something like this:
<%
Response.ContentType = "application/msword"
%>
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word...
hi,
i'm displaying an image like this:
<img src='counter.asp'>
counter.asp is doing a hitcounter do determine how often the image was displayed (i'll replace it with a modrewrite url).
the problem: in the counter.asp script i need to send the actual .jpg image to the browser, how could this be done? i suppose i need to load the imag...
Anyone know of a way to find out the amount of memory/size of a XMLDocument once it has parsed a XML file? I've been doing "beer mat" calculations so far but have been asked to come up with some more legit numbers through monitoring some how.
I need to create about 1500 XML files (via FreeThreadedXMl-DOM object), which verge between 3-9...
I have set Data Source(ODBC) for running ASP Site in my local Computer selected Microsoft Access Driver.
Now I can run the whole site with out error.But If i apply leave then it will show an error.
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query.
/e...
Basically we moved from IIS 5 to IIS 7 and I am trying to update some of our old COM objects to .NET by rewriting them in C#. What I am have so far is a Classic ASP page calling the COM+ object and then I am trying to do a simple redirect within the COM+ object (this is just for testing purposes, it's not what the object will do eventual...
Hi Guys, So i've got this little static method in a .Net class which takes a string, uses some stored public key and returns the encrypted version of that key. This is basically so some user entered data can be saved an encrypted, then retrieved and decrypted at a later date. Pretty basic stuff and the unit test works fine.
However, ...
This is strange. In the news details page, I want to take a few different values from different tables with one query. However, for some strange reason, I only get two values back. So the outcome is like:
<Desc></Desc>
<Date/>
</row>
</rows>
If I disable fullname, then I get shortdesc but not others. Same things happens with others.
...
I'm converting a VB6 COM object that works with classic ASP to a c# .Net COM Object
Interop_COMSVCS.ObjectContext objContext;
Interop_COMSVCS.AppServer objAppServer;
objAppServer = null; // need to initialize before using
objAppServer = new Interop_COMSVCS.AppServer();
objContext = objAppServer.G...
We currently have a form with the standard multi-select functionality of "here are the available options, here are the selected options, here are some buttons to move stuff back and forth." However, the client now wants the ability to not just select certain items, but to also categorize them. For example, given a list of books, they wan...
What I am trying to do is simple. I have some Classic ASP with include headers like the following referencing MDAC 2.5:
METADATA TYPE="TypeLib" NAME="Microsoft ActiveX Data Objects 2.5 Library" UUID="{00000205-0000-0010-8000-00AA006D2EA4}" VERSION="2.5"
Now I am trying to call this same include file on a Windows 2008 box with ...
Below is my xml
XML1
<?xml version="1.0" encoding="ISO-8859-1" ?>
<CATALOG>
<CD>
<TITLE>1</TITLE>
<ARTIST>Bob Dylan</ARTIST>
<COUNTRY>USA</COUNTRY>
<COMPANY>Columbia</COMPANY>
<PRICE>10.90</PRICE>
<YEAR>1985</YEAR>
</CD>
<CD>
<TITLE>2</TITLE>
<ARTIST>Bonnie Tyler</ARTIST>
<COUNTRY>UK...
I created a shortcut, in Windows, to a folder. I then placed this shortcut in another place. Using ASP, is it possible to list the files in the folder via the shortcut? All folders, files, links, etc. are on the same drive.
...
Hi
<%
''# Stage 1
datas=Server.URLencode("<PaginationData currentPage=""1"" totalPages=""9""/>")
response.write "Encode = " datas &"</br></br>"
''# Stage 2
response.write "Decode = " ''# How i again decode my encode data?
%>
In the "Stage 1" , i encode my xml data
In the "Stage 2", How i decode the "Stage 1" Encode data?
hoping ...