Hi
I need to make a lot of content (not structure) changes to one SQL Server2000 DB. Later on I would need to push these changes to production DB. What I was thinking I would do all my changes to db contents and then will compare new db to back up and somehow script all the changes and then...
Hi
I posted this question in ASP forum as well but didn't get any responses yet so I am reposting it here:
I need to make a demo version of my ASP/MsAccess Application. I want to be able to give it away to people so they can install it use it for some time let's say 30 days and then it will...
Hi
I need to make a demo version of my ASP/MsAccess Application. I want to be able to give it away to people so they can install it use it for some time let's say 30 days and then it will not function or will pop up a message or whatever ...
My application written in classic ASP and...
Hi
I am trying to do the following:
Set objXml = Server.CreateObject("Microsoft.XMLHTTP")
' Opens the connection to the remote server.
objXml.Open "GET", "emailOutput.asp", False
' Actually Sends the request and returns the data:
objXml.Send
it gives me an...
Is it possible to write a regular expression that will validate lenght instead of value ?
I need to check that length of passed in value is greater than zero or its length equal to zero.
I know how to search for a specific value but don't know if I can check for length...
I need it to be a...
Hi
I have this annoying problem with ASP/SQL flipping month and day in dates...
I've got a stored proc that expects 2 date params and I have an ASP page that executes it here it is:
Set Cmd = Server.CreateObject("ADODB.Command")
With Cmd
.ActiveConnection = strConn
.CommandText =...
Hi
I need to generate a list of dates between 2 dates for example:
1/7/2003
2/7/2003
3/7/2003
...
30/7/2003
it's trivial right ?
here is my code and I don't know why I am getting these results:
01/07/2003
7/2/2003
2/8/2003
<%
Option Explicit
Dim startDate, endDate, currDate, temp...
Hi
When I run my stored proc it doesn't propduse any errors but also dusn;t seems to execute... I am new to ADO can you please have a look maybe I am doing something wrong with my ASP?
Set Cmd = Server.CreateObject("ADODB.Command")
With Cmd
.ActiveConnection = strConn...
Hi
I just posted an XML question in ASP forum and then realised that I should've posted it here but now it's too late ... here is a link:
thread333-589499 have a look
Thank you
Sergei
Hi
I am an XML newbe and I have this MSXML 4.0 compatibility problem... My code runs on MSXML 2.5 and 3.0 OK but when I use MSXML 4.0 it stop working (no ASP errors!)
OK what I am doing I am comparaing 2 XML files that represent directory and file structure on 2 boxes and reporting any...
Hi
I am trying to debug my app and I want to spit some info to a text file (append) but for some reason this Sub I wrote doesn't work... Can you see what am I doing wrong ?
Sub DumpToFile2(strOut)
'______________________
'*START* Write to file
'______________________
Const ForReading = 1...
Hi
I need to write a small app that will scan newly coming e-mails and resend them via SMS gateway ... friend of mine wrote a VBA script in Excel to read/send e-mails but I seems to me as not right choice for a task ... so my question is: what is the right choice of programming language ? is it...
Hi
I need to write a small app that will scan newly coming e-mails and resend them via SMS gateway ... friend of mine wrote a VBA script in Excel to read/send e-mails but I seems to me as not right choice for a task ... so my question is: what is the right choice of programming language ? is it...
Hi
I am helping a friend to prepare for Java exam (uni) and threre is this question that I don't know answer for...
FileInputStream fis;
DataInputStream dis;
int value1, value2;
fis = new FileInputStream("file.dat");
dis = newDataInputStream(fis);
value1 = dis.readUnsignedByte()...
Hi
What I've read somewhere on forums that if I will install IE 5.5 it will update MSXML parser on my box is it true ?
I developed an app that uses MSXML3.0 but my production boxes are all different some are Win2K some NT4.0 and most of them don't have XML installed at all (NT4.0)... and it's...
Hi
I am looking at some somple code that creates histogram for a color ... I do understand all but one bit here and I suspect it's a bit shifting operation. Can anybody please explain to me what is it ?
Here is the code:
//calculate histogram for blue
//count instances each color
histArray =...
I am ASP programmer and I need to write a simple WHS script I was told I can do it by simply replacing all Response.Write with WScript.Echo and it worked ! :) But I still have one more question is how to abort script execution ?
This is my script:
Dim objWSHShell
Dim objPwdSplat
Set...
Can I start out of user process thread in ASP?
I would like to be able to start new ASP thread when user hits a page... I did it in Cold Fusion 5.0 is it possible to do in ASP ?
I would like to be able to start some lengthy process triggerd by user loggin to my side but I don't want to...
I was using WSH Shell to read windows registry assuming that it's installed on every IIS server, but somebody mention to me that it's not true and WSH is only available on Win2000 + or if you have IE 5 or IE 5.5 installed is it true ?
This is related to topic of getting computerName out of the Win OS box
here is a link:
thread96-565498 know I can get server name via ASP Request.ServerVariables("LOCAL_ADDR") or Request.ServerVariables("SERVER_NAME") but it doesn't help me as it gets me IP of the web site...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.