Well my problem is that yes i do want to export the data to excel but only the selected data.
To be clear i have provided check boxes against each record the user checks the record or records...
I would like to declare an array without specifying how many entries there are, how can I do this?
dim arrPrimColors(2)
arrPrimColors(0) = "Red"
arrPrimColors(1) = "Yellow"
arrPrimColors...
i have the a stored procedure that has some conditional updates to different tables and after updates has select statements to return the updated data. Not all the selects return results.
H...
When connecting to an Access Database, I get an error with this error type:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Driver Manager] Data source name too ...
Hello.
I am in desperate need of an answer. I am trying to send a mass email. I am using the jmail component. Then, I am looping through the recordset and sending the email out. Well, I...
Transferring an ASP application from Windows Advanced Server (IIS5) to Windows Server 2003 - Enterprise Edition (IIS6)
Here is the code that errors out:
'Run memory checking batch file
Se...
I am looking for a VBScript function that implements a MD5 or SHA1 Hash function.
(It is for use on a shared server where no custom components and CGI apps are allowed)
Issue is that selectSingleNode returns an answer only if the item I am searching for is the first child.
For example, if I want to know what county "CHARLOTTE" is in, it tells me "MECKLENBURG...
When I try to run an update query via ASP to an Access DB, I get the following error. I suspect that the proper permissions are not assigned to the IUSR_ account, but I am unable to grant the ...
Hello Experts-
I have a function that returns me the portion of a string before the first hyphen:
Function createRewriteFolder (text)
pos=InStr(text,"-")
If pos = 0 Then
createRewr...
how can i stop the user to type special characters on textarea in my asp like...
# or **** or !!! or :: or
or how can i replace this characters with some thing else
or how can i tell...
Greetings everyone,
This is probably a cheap one, for that I apologize.
I will like to insert a br into a textArea so that when I hit then return key, the next text begins on a new line....
I have a table in SQLserver 2000 that has a list of events and a field called dtmDateStamp - default value is
I need to use ASP recordset to retrive the last 10 records entered into the ...
Hello everyoen, I get this strange error:
ADODB.Field error '80020009'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
...
Hi,
I have inherited an (old) ASP site (I'm a perl/c/Java programmer). The database on the backend (SQL 2005) was compromised by what I believe was SQL injection. The hacker put in a stri...
I am fairly new to ASP and I am having trouble doing a conversion in my SQL query. I am working on a asp form that has two date fields for filtering between the specified range. I am pulling t...
Until a few months ago, ASP pages that included creation of scripting.filesystemobect would run on my WinXP sp2 machine. Now I get the error message -ActiveX component can't create object: '...
I am using MSXML2.ServerXMLHTTP to access a web page which is located on another machine(localwebserver),trying to send XML request & accept the response
During the "Send" I get the foll...
Hello everyone, thanks for taking the time to read my question.
Background:
--------------------------------
We have an authentication module that a bunch of folks use across our enterpri...
Hi
I need to generate a delay in a part of a VBScript in an ASP page. How could I do this? I know I can generate a delay by having a loop, for example:
for i = 0 to 1000
nex...
is it possible to display an alert box in vbscript onload of a page even though it is a server side language?
Hi,
I am having a problem with one of my asp scripts....
the script is as follows
Basically, "Species" is a list box that is passing the selected values to this asp script,
I m trying ...
Im after some examples of a login pages where depending on the users admin level they get directed to either the admin page or the user page if login details are correct. Im using ASP VBScript...
I'm trying to pass an array to a Sub from the onclick event of a button -- I'm getting a type mismatch error.
Here is the code for the buttion
<input type=button language=vbscript valu...
How to close IE browser window when user click EXIT button using ASP command? Thanks.