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 db > march 2006

ASP -- INNER JOIN
Posted by TRB_NV at 3/31/2006 1:16:02 PM
I've got an Access 2000 database on my webserver and I'm trying to write a SQL command to query the database and pull out cheese information. I can't get the INNER JOIN statement to work properly. What I'm trying to do is have the user click on a cheese milk type, let's say Cow Milk and then...more >>


ASP SELECT CASE and Database
Posted by Neil at 3/30/2006 6:48:49 AM
Hi, I've have obtained an example shopping cart. It has the following code, each case is for a different product. This code works fine for these 5 items. Select Case iItemID Case 1 aParameters = Array("./images/shop_shirt.gif", "ASP 101 T-Shirt", "Brief details about ASP 101 T-Shirt",...more >>

"Operation is not allowed when the object is closed" Error
Posted by Grayscale at 3/29/2006 5:43:08 AM
When I try to execute the code below in asp I get the following error message: ADODB.Recordset (0x800A0E78) Operation is not allowed when the object is closed. Rs.Open "SELECT COUNT(KartNo) From Personel WHERE KartNo="&kayit3&"", Con, 3,3 While Not Rs.Eof if RS(0) = 0 Then ...more >>

Access DB Error
Posted by Paul W Smith at 3/29/2006 12:00:00 AM
I have been working on an ASP site www.middlesexccl.com on my localhost. It uses a Access MDB and DSNless connections - no issues. I have uploaded the site and it seems everytime I upload an new version of the database I am given this error. It also seems that everytime I upload I copy ac...more >>

Insert Into Statement Help
Posted by pamela anderson at 3/29/2006 12:00:00 AM
I am trying to insert a record into my database but i get syntax error INSERT INTO CAn you help? the code is below ' *** Insert Record: construct a sql insert statement and execute it Dim MM_tableValues Dim MM_dbValues If (CStr(Request("MM_insert")) <> "") Then ' create the s...more >>

reading foxpro .dbf from asp causing lock
Posted by mbosco51 NO[at]SPAM hotmail.com at 3/27/2006 11:17:02 AM
Hi. I am reading a foxpro .dbf file and displaying the results on an asp page. The page is working fine, but I did notice something strange. After the page is done loading the dbf file appears to be locked for the next minute. When I try to open it in FoxPro I get a "File access is denied" m...more >>

SQL stmt on 2 databases
Posted by Jess at 3/26/2006 2:57:35 PM
Hi, I'm not sure what the right SQL statement would be. In 1 database there's a table of parent companies and a table of child companies. The parents have a key in their table. The childs have their own key plus the parent key in another column. In the 2 database there's a list of events...more >>

Access Database record added via asp - but it is not inserted
Posted by Trevor at 3/24/2006 4:35:02 AM
I have developed an application using frontpage and MS Access, all functions work correctly on my development system. Have published the web site to a production server and all seemed to work. However when functions add a record the a database table, asp reports that the record was added,...more >>



VB Date Format
Posted by Mike at 3/23/2006 8:35:53 AM
I am upgrading from an NT4 IIS4 server to a new Server running 2003 and IIS6 and have a problem with date format in VB. I have several web pages that use the date command as part of SQL strings to read or write data to ether an Oracle, SQL, PI, or Access databases. The problem is the date fu...more >>

update record in sql server db using asp
Posted by novice_techy at 3/22/2006 2:59:18 PM
I need to be able to update a record about 200 characters with a click of a button. The user will enter the new text in a textarea called NewsText and then click on submit button. Right now when clicking on the submit button the exsisting data gets overwritten with a null or blank. Here is my c...more >>

Help with an update query
Posted by Brave at 3/22/2006 1:27:24 PM
Lets say I have an Access database named Database001. I have a table called Table001. In the table I have the following fields: 1: Date\Time (an automated date\time stamp when an entry is added) 2: Status (defaults to the term 'Active') 3: Del14 (defaults to the term 'No') I am tring to cr...more >>

asp connection problem
Posted by Mike at 3/22/2006 8:00:32 AM
I am having a problem getting my asp pages to connect. My database is MS SQL 2000 sp4 MDAC is 2.8 IIS is 6 - Authentication is Anonomous MS SQL authentication is on Mixed I get this error on the test page. Microsoft OLE DB Provider for SQL Server error '80004005' [DBNETLIB][Connectio...more >>

Server Side and Client Side
Posted by MarkS at 3/22/2006 1:45:30 AM
I have developed an Application which opens an ADO Recordset on the Server using the following : Set adoConn=Server.CreateObject("ADODB.Connection") adoConn.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\subsidy\subsidy.mdb" The above works fine or I could use Server.M...more >>

Time incorrect when running this script (exporting .vcs file)
Posted by shawn NO[at]SPAM myemail.com at 3/21/2006 4:55:11 PM
I am allowing users to save a .vcs file for an event coming from a = database. Everything works correctly except it is showing the incorrect = time. Does anyone have any clues on how to get this to show the time = correctly, everything else is great! ------------------------- script begin --...more >>

inserting into a database using asp.net
Posted by evandela NO[at]SPAM bigpond.net.au at 3/20/2006 6:35:49 PM
Hi all, I am aware of how to insert into a database the old fashioned way, but I am trying my hand asp.net and am SURE this isnt the right way to do it anymore... I am a newbie here - so please forgive me if I sound stupid... the query I am trying to run is... The code is fairly simple... <sc...more >>

Textbox value validation using database table
Posted by Kermit Piper at 3/16/2006 5:37:12 PM
Hello, I've done this with drop-downs where I loop through a recordset, populated another drop-down and so forth. But I think this should be easier, but I'm not sure. I have a table with states, cities and rates. What I need to do is when a user selects a certain state from a drop down, and t...more >>

Aargh!! Unspecified errors randomly!
Posted by JackBlack at 3/15/2006 1:21:42 PM
Using ASP under IIS5 on Windows 2000 Server (latest patches and MDAC). OK, intermittently when I try writing a record to an Access database, I'm getting the phantom "Provider error '80004005' Unspecified error" on a connection Execute method call. When it works, it works perfectly. For ex...more >>

Turn dynamic pages into static?
Posted by smf at 3/15/2006 12:05:04 PM
We've developed a small system which pulls information from a database by = use of query string parameters, ex. mypage.asp?var1=3D1&var2=3D2. Now to optimize our opportunity to be found by a search engine, it is = recommended that pages be static so that robots can pick it up. So what = would...more >>

Using Oracle vs SQL Server procedures to select records for an .asp page.
Posted by Andyza at 3/15/2006 3:22:48 AM
When using SQL Server as a backend it is often recommended that developers put their database code into stored procedures (i.e. the selects, updates, inserts etc...) and then call the stored procedure from an .asp page using e.g.: conn.Execute("dbo.MySProc @Username = 'blah'") where MySProc...more >>

Please Help before I pull out the last of my hair
Posted by Evan Nelson at 3/14/2006 11:55:33 AM
This is on the longer side so please bear with me. I have written the following stored procedure: CREATE PROCEDURE dbo.usrGet_ContactSearchPRODUCT_CATEGORY @ConsultantID Int, @LanguageID Int, @RequestedPage Int, @PerPage Int, @FromDate VarChar(10), @ToDate VarChar(10), @ProductC...more >>

Recordset or Array?
Posted by Noozer at 3/13/2006 10:32:42 AM
Coding an ASP application and I'm creating a Public Function to return the results from a query. I've been told that it's better to return a recordset containing the results than it is to return an array. I'm not sure which would be better, or how I'd handle passing a real recordset back fr...more >>

best practices for subforms/subquerys
Posted by wouter NO[at]SPAM iwork.nl at 3/10/2006 4:58:48 AM
My ASP pages uses several SQL stored procedures to show data. The first procedure finds all items "A" for a specific period, all other procedures query all other kind of stuff, using values "A" form the first procedure as a parameter. It looks something like this: <% sql1 = "exec proc1" sql2...more >>

DSN Less Connection Help
Posted by SIMON GARE at 3/10/2006 12:00:00 AM
Can anyone help me create a dsn less connection to the sql server 2005 db from the connection.asp file below please, <% ' FileName="Connection_odbc_conn_dsn.htm" ' Type="ADO" ' DesigntimeType="ADO" ' HTTP="true" ' Catalog="" ' Schema="" Dim MM_TobiasNET_STRING MM_TobiasNET_STRING = "dsn=...more >>

Option Box Images??
Posted by Kristian Todd at 3/7/2006 12:44:45 PM
Can somebody please tell me is is possible to get the background of an option box to show different images?? <option value="Bubbles" selected="selected" style="background-image:url(Thumbs/Bubbles.jpg)">Bubbles</option> But those does not work, any ideas?? If not could anyone suggest away ...more >>

export data from asp to .mdb?
Posted by Mr Pen at 3/7/2006 7:30:27 AM
Hi I am currently trying to get a simple data submission asp form to export data to an access database, this is the code for the contact_insert page <html> <head> <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252...more >>

Top 10 items?
Posted by TRB_NV at 3/6/2006 2:22:55 PM
I'm trying to write a little ASP routine to display the top 10 items sold. Following is a sample database: Sale #: Name: Quantity: 1 Vodka 2 2 Beer 3 3 Beer 1 4 Vodka ...more >>

Using Sql Server 2005 w/ ASP 2.0, attaching a .mdf
Posted by Greg P at 3/6/2006 10:50:30 AM
I know this is a long post, please bear with me. I have been working on this all weekend to no avail although I have done a good amount of research (see most pertinent links that I've looked at below). Please help me get through this!!! I'm having some serious problems attaching a .mdf f...more >>

problem with web farm
Posted by luis molina Micasoft at 3/3/2006 9:47:31 AM
hi, i have a problem with a web farm. an application asp net 1.1 that works in different servers doesnt works in the web farm (4 servers balanced). The error it says is "System.Web.HttpCompileException: External component has thrown an exception" basically is a page that its requested in one ...more >>

spammers
Posted by kwamechambers NO[at]SPAM care2.com at 3/2/2006 11:54:47 PM
s.lagah@ntlworld.com michael_sanko23@yahoo.com varalli.ilenia@hotmail.com jenifermjohn33@tiscali.co.uk alhajigambo65@excite.com lisa_patri@email2you.info thirds@sit.fi peterwallace11@msn.com peterson11@walla.com benreplydepio@yahoo.com freelinkdepio@walla.com salah...more >>

Microsoft][ODBC Excel Driver]General error Unable to open registry key 'Temporary (volatile) Jet DSN for process 0x1050 Thread 0x10a8 DBC 0x225e154 Ex
Posted by hoppers at 3/2/2006 2:49:37 AM
Hi all, PLEASE HELP. I'm having a real issue with reading an Excel file from my asp on a remote server. A snipit of my script is as follows: exceldb="serverdetails/adotest.xls" Set objConn = Server.CreateObject("ADODB.Connection") ' Create a server connection object objConn.Open "DBQ=" ...more >>

Type mismatch error between SQL Money format and Web Cookie value
Posted by GLKGail at 3/1/2006 6:43:29 AM
I am working on an application that allows the entry of a product specification maintained in SQL 7.0 through a Web Page using ASP. There are four fields in the SQL database that are set to the format "money" since they represent monetary charges for special services. The amount of data to be ...more >>


DevelopmentNow Blog