Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007


all groups > inetserver asp general > october 2003

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

Is Interdev needed for ASP?
Posted by Bruce W...1 at 10/31/2003 3:15:50 PM
I've got the latest Visual Studio and have been doing ASP.NET websites. Now I want to do a traditional ASP (not .NET) website. I gather that these are done with Visual Interdev. Is Visual Studio 7 suitable for doing an ASP website? I'm a little confused about where Visual Interdev fit in. ...more >>

ASP page to show different schedule on each day
Posted by Matthew Louden at 10/31/2003 3:12:11 PM
I want to create ASP page that shows the schedule of TV station. Since each day's (Monday - Sunday) schedule is different, and I want each day will display the schedule on that day of a week. I wonder if I need to create 7 different ASP pages and call different one on each day? This is just my i...more >>

asp paging problem
Posted by wk6pack at 10/31/2003 3:01:09 PM
Hi, I have an asp page that I would like to do paging. The problem I'm running into is that the same page that prints to the output is also recieving data from the previous page for query parameters for the sql string. When I click on the next page, it queries itself and loses all the quer...more >>

NT4 vs W2K
Posted by Gary Contois at 10/31/2003 2:15:41 PM
I noticed something recently. When running an ASP on my NT4 machine (IIS?) my asps load in a manner which displays the page information as it loads line by line. I then moved this page to my new W2K machine and notice that the info on the asp now only appears after the entire page is done proces...more >>

Re: SQL DELETE statement in ASP
Posted by Ray Medina at 10/31/2003 2:13:49 PM
Hello Ben, I am not sure if anybody else has seen this, but I just noticed it. I was looking at the code that you pasted/* Copy of code */strDelSQL = "DELETE * FROM [Status] WHERE ((Status.ID) = " & item &")" adoConn.Execute(strDelSQL)This is what I would do differently1. Take out the first set...more >>

Problem with asp and linux apache
Posted by Ste at 10/31/2003 12:23:18 PM
Hi all, with my old win2k server iis i had this file working, but with linux and apache i have a problem: http://delibere.onde.net/rimando.asp Any idea? Tks Ste ...more >>

Coordinates solution...
Posted by Need_help at 10/31/2003 10:03:37 AM
Sorry for inconveniance, but I couldn't check the newsgroup since friday. I can't see any solutions right now on my post... So, one more time... (if anyone noticed the solution)... I have javascript that shows exact mouse coordinates on screen: (see script bellow). I should submit those coo...more >>

Incorrect Date Format
Posted by Alfonso Chavez at 10/31/2003 9:59:35 AM
Hi Everybody, I hope this is the correct newsgroup for this, if not please let me know where should i send this question which is driving me crazy. The problem is the FormatDateTime function it is changing the date format to MM/dd/yyyy but we need dd/MM/yyyy. We already changed the reg...more >>



Creating nodes so categories show subcategories
Posted by Bill at 10/31/2003 9:21:30 AM
I've got a bookstore I'm developing, and I wanted to list all the categories on the home page of the site. However, there are so many, that they now extend way below the screen, making the page look sloppy. I want, therefore, to limit the number of categories on the home page, to a few general c...more >>

Application Variables
Posted by Waguih Boctor at 10/31/2003 9:06:32 AM
Hi, I have a general question regarding ASP Application variables. I'm building a web app with a lot of ASP files which I'd like to split out into several different subfolders. However, I noticed that application variables that I set up in my Application_OnStart event sometimes survive switchi...more >>

Slightly off topic : Reducing piracy/licensing etc...
Posted by Rob Meade at 10/31/2003 8:48:29 AM
Hi all, I've written an application that's currently being used by 1 company, and soon to be used by another. I was thinking the other day how as this is all just written in ASP - ie, no .dll's or anything else, I have very few ways to prevent anyone working at these companies taking a copy o...more >>

ASP Not Working
Posted by Alan at 10/31/2003 6:33:00 AM
New to IIS, Why will IIS 5.0 not server up my ASP web pages? I cannot even get to the help because it is an ASP Page. I get an error in IE that states "HTTP 500 Internal server error". I have looked in the configuration and cannot find anything related to ASP. What can I do to serve up...more >>

Create a file with FileSystemObject
Posted by jessie at 10/31/2003 4:11:51 AM
This my code for practice: <html> <body> <% Response.Write("6 ") dim fs,fname set fs=CreateObject("Scripting.FileSystemObject") set fname=fs.CreateTextFile("f:\test.txt") fname.WriteLine("Hello World!") fname.Close set fname=nothing set fs=nothing %> </body> </html> but I couldn'...more >>

Forgive me!
Posted by andyza NO[at]SPAM webmail.co.za at 10/31/2003 3:23:41 AM
A dumb friday-afternoon-and-I-need-a-weekend question. I inherited an application that has code similar to: set conn = server.CreateObject("ADODB.Connection") set New_app = server.CreateObject("ADODB.Recordset") set New_app = conn.Execute("SELECT * FROM TableName WHERE Blah = '"& blah & "'"...more >>

Connection string declarations
Posted by andyza NO[at]SPAM webmail.co.za at 10/31/2003 3:05:41 AM
I'm using a connection string in my asp pages similar to: cst = "Provider=SQLOLEDB;Server=MyServerName;Database=MyDbName;" cst = cst & "Network Library=DBMSSOCN;User ID=MyUserid;Password=MyPass" set conn = Server.CreateObject("ADODB.Connection") conn.open cst Do I need to declare the cst...more >>

Error while getting Recordset from component in ASP
Posted by sudhakarsankar NO[at]SPAM yahoo.com at 10/31/2003 2:51:11 AM
Hi all, I am using a COM+ component to fetch the Recordset from the database. My coding is as follows: ' ------ In COM+ Application -------------- Function executeResultQuery(Con as Connection, qry as String) As Object dim oRs as New ADODB.Recordset oRs.open qry, con Set exe...more >>

Can you help?
Posted by Steven Burn at 10/31/2003 12:34:08 AM
Basically, what I'm looking for, is some sort of script that I can drop into a folder on my server, and when someone visits that specific folder (I'm going to remove all file's from the folder as I've moved the site), the script detects the file is not there, and auto-redirects them to the new l...more >>

asp file with Report in Word template
Posted by Rajneesh jain at 10/30/2003 11:52:20 PM
Hi all, Can i create a template in Word and just out in all the information from database using ASP? I have to do : 1.Collect the information from the ASP froms into database 2.The information what i collected should be inserted into an word template. any help will be appreciated ...more >>

Memo snippet
Posted by Mike M at 10/30/2003 10:05:03 PM
Hi all, This is my first post here. I have been looking everywhere on the forums and all over the net but i cannot find anything about this. I did find one tutorial ages ago but didnt have a use for it at the time. What i would like to do is have a page that cycles through a database and d...more >>

Object doesn't support this property or method: ZoneRS.MoveFirst'
Posted by shank at 10/30/2003 7:25:59 PM
Can anyone give me some general ideas on why an error like Object doesn't support this property or method: 'ZoneRS.MoveFirst' comes up on a page? MoveFirst is a command to move to the first record... correct? thanks ...more >>

RecordCount
Posted by Mark Watkins at 10/30/2003 7:15:50 PM
I know for a fact that in my database, I have three records under the users table. However when I execute this code: --------------BEGIN CODE---------------- Set objConn = Server.CreateObject("ADODB.Connection") objConn.Open "Driver={Microsoft Access Driver (*.mdb)}; DBQ=C:\Inetpub\wwwroot...more >>

Syntax error (missing operator) in query expression
Posted by Maciej Paras at 10/30/2003 7:01:40 PM
Hello! I've written 2 pages: one i HTML format, and second - in ASP. When I'm posting data from HTML page, I receive this error generated by ASP page: Microsoft JET Database Engine (0x80040E14) Syntax error (missing operator) in query expression '' AND ([ID Platnika]='OFFICE DEPOT')''. "Off...more >>

ASP / Hidden text box issue
Posted by Andrew Durstewitz at 10/30/2003 6:19:13 PM
Hi! I am having a really strange issue. I have a few users calling in saying they are getting an error. On further review I found this line is what is causing it... Set strLookup = cnAddStep.Execute ("SELECT * FROM ActionSteps WHERE planId = '" & intPlanId & "' ORDER BY stepId DESC") Th...more >>

Server variable riddle - extract typed in querystring after url
Posted by jason at 10/30/2003 4:37:40 PM
Could someone help me figure out how to utilize .servervarialbles (or another creative method) to do the following: If someone types into browser (or clicks a querystring hyperlink) with the following.... http://www.boat.com/?cat=CrazyHorse ....* Is it possible to extract the ?cat=Crazyho...more >>

parsing string, leaving words intact
Posted by meldrape at 10/30/2003 3:10:20 PM
Hello, I need to parse a long string into no more than 30 character chunks, but I also need to leave the words intact. Right now, I am using: For intStart = 1 to Len(strOriginal) by 30 strPrint = Mid$(strOriginal, intStart, 30) Print #detailFile, Tab(1), intStart, Tab(4), strPrint...more >>

I just spent several hours shaving a total of 250 milliseconds off my application
Posted by Tom Siltwater at 10/30/2003 2:29:43 PM
building variable width/DB tables etc using getrows instead of movenext. Performance is a major concern as this app requires SSL. My question is, when does it become more about the challenge of building faster apps vs. getting the job done??? If my calculations are correct, I just added an e...more >>

Dateadd function not adding up...
Posted by onlyforjunkmail NO[at]SPAM yahoo.com at 10/30/2003 2:02:32 PM
Please see: http://www.showorders.com/test3.asp The code generating the page is as follows: testdate = "1/29/2003 1:00:00 PM" while count <> 5 testdate = dateadd("n",15,testdate) response.write testdate & "<br>" count = count + 1 wend What is going on there? The times should b...more >>

WinXP Pro: Setup Secure Communications on IIS
Posted by Dan Sikorsky at 10/30/2003 1:51:38 PM
For testing purposes, I need to setup secure communications for a folder on a website in my WinXP Pro IIS. When I right click on the directory in the IIS services window, an go to the Directory Security tab, everything is ghosted. I need to reference a web page in this folder with https://loc...more >>

get e-mail address from Exchange?
Posted by ljb at 10/30/2003 1:28:02 PM
I have asp for an employee directory with photos. All the info is stored in an Access database including e-mail address and phone number. I would really like to get the e-mail and phone numbers from our Outlook/Exchange address book. This address book is kept updated but my database is not. How w...more >>

display please wait message
Posted by deepblue at 10/30/2003 1:27:38 PM
Hi, I need to display a "please wait" message when the user click a post button on a webform, so that the webform can start data processing. I am using asp.net in vb.net code- behind. I saw some javascript example, but I could not find a way to show the message before the processing. Thank...more >>

session variables disappear in IIS 6
Posted by Jim Boyer at 10/30/2003 1:15:05 PM
I have an ASP program that uses session variable to keep data between pages. The program worked fine under IIS 5, but with IIS 6 these variables randomly disappear. Note, the problem seemed to start when Windows Share Point was installed on this server. Any ideas why this might happen? ...more >>

events calendar been asked before but . . .
Posted by middletree at 10/30/2003 11:12:33 AM
I know I have seen some free ASP calendars before, and even did a search of this NG, but couldn't find any references to any. I went to 4guysfromrolla and asp101, but they only .NET calendars as far as I could see. I'm specifically looking for something that's free and has a page for editing o...more >>

OLAP cube ERROR: "the data being processed is over the allowed limit" and tips on increasing speed
Posted by mrwoopey NO[at]SPAM yahoo.com at 10/30/2003 10:56:07 AM
Hi, My OLAP data cube is giving me the following error when I am manipulating OLAP data cube views: "the data being processed is over the allowed limit" I know that this message is caused by the size limit of each form field that is retrieved in the Request object is 102,399 bytes. The err...more >>

putting '/' in field name
Posted by Stuart Palmer at 10/30/2003 10:42:30 AM
Hi everyone, I have a form with '/' in some of the field names, when I pass through to the next page the field name comes back as though it's been htmlencoded, so getting the value out of the field I need to convert this back to '/' with the replace (same problem if I have a ',' in the name) ...more >>

Response.Addheader
Posted by Marco Alting at 10/30/2003 10:25:10 AM
I'm trying to save an ASP generated table as an Excel sheet, but when I use this line: Response.AddHeader "Content-Disposition", "attachment;filename=report.xls" I loose part of my table layout and get an error message on a missing file (stylesheet file), If I however first display the table...more >>

Performance Question...
Posted by Aaron at 10/30/2003 9:16:24 AM
hello. i have the following in a form that submits to itself ... <% dim page, strurl, strurldesc page = trim(request.servervariables("script_name")) strurl = trim(request.form("strurl")) strurldesc = trim(request.form("strurldesc")) if request.totalbytes > 0 then savelink strurl, session...more >>

How View Image Stored in Access DB?
Posted by Bullschmidt at 10/30/2003 7:01:56 AM
A client has an OLE field called Signature in an Access database. The field contains a GIF image of a scanned signature (that a product has been received). How can I show this image on an ASP page? Best regards, J. Paul Schmidt, Freelance ASP Web Developer http://www.Bullschmidt.com ASP D...more >>

<include> lines disappear from code
Posted by Bil Click at 10/30/2003 6:15:16 AM
I am coding classic ASP pages in Visual Studio .Net 2003. I have a file called counties_option.asp that just has a list of options: <OPTION VALUE="030">ANSON</OPTION> <OPTION VALUE="040">ASHE</OPTION> etc... I then call this as an include file in several places in a file called page1.asp...more >>

What should I do if one of my update fails?
Posted by Colin Steadman at 10/30/2003 1:26:26 AM
I'm setting up a site that prompts a user for information about people and stores the results in a Access database. This database is then used to create accounts on the network. To store the user data I need to run three separate INSERT queries into an Access 2000 database. What I'd...more >>

Crystal Report and ASP
Posted by Pramodu. C. P at 10/29/2003 11:52:42 PM
Hi All, Hope some one can help me. I am new to the world of ASP. Yes, I have created some asp pages, for our organization. My Server configuration: Windows NT 4 SP6, IIS Installed. Now, i want to link my asp pages to one of my crystal report which i have designed using CR9. I have searc...more >>

XMLHTTP experience
Posted by Laphan at 10/29/2003 10:59:43 PM
Anybody got experience in using the XMLhttp object? I'm looking to use it to extract data from certain web pages so that I can create a localised search engine, ala fusionbot.com. Any assistance you can give would be appreciated. Rgds Laphan ...more >>

what is postback?
Posted by Matt at 10/29/2003 10:22:00 PM
I always see the term "postback" from ASP book, but I am not sure if I fully understand the meaning. Here's my understanding so far, please correct me if any mistakes. Here's a typical html form: <form action="process.asp" method="post"> 'GUI code </form> "postback" action happens when th...more >>

logging downloads
Posted by Øyvind Isaksen at 10/29/2003 9:10:00 PM
I need to log how many times one spesific file is downloaded from my website. First I thought this could be done simply by routing via a script that count number of downloads, and then redirect to the spesific file. But this soultion will not work when a user right click on the file/link and cho...more >>

New to asp and need help please
Posted by Carolyn Gill at 10/29/2003 9:00:48 PM
I have already created an asp login/database for a learning/quiz section on a small site. There will be multiple quizzes through the site and what I need now would be help: tutorials or advice that a complete novice can understand/follow to create the following: A small simple quiz--for now ea...more >>

ReDim Problem
Posted by Wayne Wengert at 10/29/2003 5:30:12 PM
I am trying to add one column to an existing array (code below). The ReDim command gives the error: ----------------------------------------------- Microsoft VBScript runtime error '800a0009' Subscript out of range /ListCGShowsGrouped.asp, line 58 ----------------------------------------...more >>

Query Problem
Posted by Stuart at 10/29/2003 5:19:29 PM
This might be the wrong group (but it is my favorite) I need to sort a list data from a text field into numerical order. The data needs looks like this: - a1 1 1a 2 3 4 29 29A 29X 25X X25 However, the data could be put into the database in any order with additions by a user so...more >>

scheduled job
Posted by middletree at 10/29/2003 4:22:46 PM
Just rand across this article: http://www.aspfaq.com/show.asp?id=2143, which led to this article on using a SQL Server job: http://www.aspfaq.com/show.asp?id=2403 Here's my question: I have an intranet app which tracks tickets for tech support. The boss wants it so that, depending on the sev...more >>

Cookies
Posted by lostman at 10/29/2003 3:32:26 PM
Hi, I need to make a little script that keep the info of a user on my site. I use Cookie to make this work, but the problem i have is : We have a lot of Sub-section on our site (www.mysite.com) like ex.mysite.com, yyy.mysite.com, zzz.mysite.com, so each of them write is cook...more >>

Aaron Bertrand - MVP Vs. Ray at <%=sLocation%>
Posted by Frankfurt Rank at 10/29/2003 3:16:05 PM
:-) ...more >>

Returning A Value from a single function
Posted by sean at 10/29/2003 3:11:56 PM
HI, I would like to know if I can some set a variable to return a single value from a function using the set command. Is this possible? Thanks in advance for your answer Sean SET test = ReturnValue(OptionID) Function ReturnValue(ByVal OptionID) Set adoCmd = Server.CreateObject...more >>


DevelopmentNow Blog