all groups > inetserver asp db > july 2003
Filter by week: 1 2 3 4 5
Need Help in DALLAS Customizing ASP application
Posted by martino rivaplata at 7/31/2003 5:45:16 PM
Hello,
I am trying to customize an existing ASP application. This
ASP already contains drop down list boxes containing
dimension members from an Analysis Services Database and
retrieves data into excel and publish it to the Web via
IIS.
What I need is to add to this existing ASP applic... more >>
IIS hangs when openning a connection w MSDAORA provider (0x80040e22)
Posted by Martin Plechsmid at 7/31/2003 3:58:06 PM
Hello.
The script below opens an ADO connection to an Oracle DB. When run from the
command line (cscript), it works. But when run from an ASP page, the IIS
hangs during the "oracon.Open()" command (details below).
I've done further investigation (see below), but am unable to find a
solution. ... more >>
Displaying one field in two <td>s per <tr>
Posted by howard.brock NO[at]SPAM virgin.net at 7/31/2003 12:24:24 PM
Hi,
I'm trying to display all the records in one database field in a table
with 2 <td>s per <TR> but don't know how to do it (or even if it can
be done).
e.g. <tr><td> fieldA.record 1 </td><td> fieldA.record2 </td></tr>
<tr><td> fieldA.record 3 </td><td> fieldA.record4 </td></tr>
At... more >>
Request.Form is blank??
Posted by b_naick NO[at]SPAM yahoo.ca at 7/31/2003 11:46:27 AM
I am experiencing a strange problem.. I've got a basic form with
METHOD = POST and ACTION = "saveInput.asp". The form has over approx
100 fields.
In saveInput.asp, I am able to sucessully write out the input values..
For example, Request.Form("userName") returns the appropriate value.
Howev... more >>
Using an asp page to return a sql query
Posted by cswartz NO[at]SPAM stromberg.com at 7/31/2003 10:05:43 AM
I know that there must be a way to do this, but in my limited
knowledge I am stuck.
I am using 2 tables
1. "BTstatus"
BugIndex
Date Entered
Company
Technician
Developer
PROGRAM
Status
PRIORITY
2."noc"
Bugindex
# of calls
Description
Bug index is the common key
I would like ... more >>
Access denied when creating Access application object
Posted by Bill Murphy at 7/31/2003 4:02:29 AM
In an ASP file I am running the following in VBScript in order to extract
data from an Access 2002 MDB file which is physically located in the virtual
directory in PWS along with the ASP file:
dim objAccess
set objAccess = Server.CreateObject("Access.Application")
When the second li... more >>
INSERT or UPDATE
Posted by Bingo at 7/30/2003 4:12:20 PM
Hi there.
I have this problem here :
I want to insert a record if it does not already exist, or to update it if
it does (based on index of course).
Can I do this with a simple SQL query?
Thanks!
Bingo
... more >>
Getting Return Value of Stored Procedure
Posted by Vipul Pathak at 7/30/2003 1:01:29 PM
Hello Friends !
I have the Following Code, that Executes a Stored Procedure and Attempt to
read a Returned Integer Value from the StoredProc.
But It gives Error ...
ADODB.Command (0x800A0BB9)
Arguments are of the wrong type, are out of acceptable range, or are in
conflict with one another.... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
recordset not writing to page
Posted by Kevin at 7/30/2003 12:42:35 PM
Hi,
Access2000 db, w2k, iis5
I am trying to write a couple recordsets to a page and the page doesn't
throw an error, but it doesn't actualy write the data either -- just the
intervening html. Can anyone spot my error -- I've been looking at it over
an hour now, changing this and that -- and... more >>
Replace function
Posted by Lamine Darbouche at 7/30/2003 11:09:39 AM
Please help,
I want to replace a string within field in a table with a nother string.
I am using the replace function but I am doing something wrong.
my code is:
UPDATE authors SET au_lname = Replace(au_lname,'cheryl','frannk')
What am I doing wrong?
Regards
Lamine
... more >>
How to write an image to db
Posted by Ralf Pelzl at 7/30/2003 9:53:30 AM
Hello,
how do i write an image from a file source to a database on sql-server via
asp ? e.g:
I try to store file c:\temp\test.jpg in the field "picture" in a recordset.
The field "picture" is datatype image. How to do this ?
... more >>
who can help me... my first asp project...
Posted by netje at 7/30/2003 9:38:10 AM
Hi,
I thought i had my asp script working....
It is a news script with a access db...
At this point i can't seem to be able to edit, delete records anymore... I
had this running, but now... for a reason i can't seem to find.. and i have
seached.. more than once!
who can hel... more >>
Running SQL DTS packages via ASP.NET
Posted by Carl Reid at 7/30/2003 6:12:40 AM
I have the above working on a machine that is both the SQL
server and the IIS webserver. My DTS package creates a
spreadsheet and this is all OK. The ASPNET account has
been given rights to run the DTS Package and also to
create the spreadsheet. A RCW has been created and
registered in the... more >>
Session Variables
Posted by tmurray0539 at 7/30/2003 2:53:57 AM
Hi all:
Does the use of Session variables create cookies on the client's
computer? I was told that this is the case but I am not in agreement. I
would like to be enlightened on the subject.
Thanks
Terry
... more >>
Wondering for a better web db solution/software/language?
Posted by Michael at 7/29/2003 4:06:49 PM
Hi, All
Can anyone advice me which kind of software if better to utilize to
development an web database application?
I have more than 20 tables, many user interface/forms, reports, controll.
It's hardly to design/code with HTML +ASP only, I am wondering if there is
any software can support no... more >>
Load Empty Recordset
Posted by Gary D. Rezek at 7/29/2003 3:23:29 PM
Hi All,
Is it possible to load an empty recordset into a page for the purpose of setting up the page for a new record?
The following code
(there is also a Case "edit" and a Case "delete" which work fine)
CASE "add"
strSQL = "SELECT * "
strSQL = strSQL & "FROM tblPatents " strSQL = strSQL & "WH... more >>
Adding a new column in Access
Posted by Peter Richards at 7/29/2003 2:31:04 PM
Hi,
Using the following ASP code:
<%
UpdateDB("ALTER TABLE tblConfig ADD SIMVersion varchar(10) NULL AFTER
Version" )
' Subroutine to update the database and check for any errors that
occured
Sub UpdateDB(strSQLCommand)
If Not Application("Debug") Then
On Error... more >>
Appication name in SQL Server connection string
Posted by Ray at <%=sLocation% at 7/29/2003 11:37:17 AM
Hi group,
Does anyone know how I can pass an application name in my connection string
and have it be recognized by SQL Server? I have this string:
Driver={SQL
Server};Server=TheServerName;Database=TheDatabase;Uid=TheUsername;Pwd=ThePas
sword;Application Name=RaysApp;
When I execute quer... more >>
newbie sql
Posted by erwin.zwart NO[at]SPAM pts.nl at 7/28/2003 11:31:18 PM
Hi,
I've got a newbie question:
i've got a device running with a WINCE.NET platform including the
webserver functionality.
Is it possible to access/create a localy SQL DataBase from an ASP page
running on that webserver?
and if it is, how? (code example)
i hope you can help me
than... more >>
SQL SERVER Execution plans
Posted by martin at 7/28/2003 8:12:06 PM
http://www.sqlservercentral.com/columnists/rmarda/understandingexecutionplan
s.asp
... more >>
Problems with my newsletter system
Posted by Laphan at 7/28/2003 6:54:51 PM
Hi Guys
Don't know if you can help, but here goes.
Created a basic ASP/ADO/Access 2000 Newsletter system using JMail.
Basically client has 300+ subscribers and wants to send 1 newsletter email
to them all every 1 - 2 months.
Missed my client's call to say it wasn't working, but having che... more >>
Connection to Transaction Manager failed
Posted by Debra McCarney at 7/28/2003 4:26:06 PM
I am using <%@ transaction=required %> at the top of my
ASP page, then doing several very straightforward ADO
updates to a SQL Server database in the one transaction in
the page. I don't do any explicit CommitTrans etc, as I
understand that MTS then handles the transaction
committing it wh... more >>
Fields.value other data types help
Posted by Joe Resudek at 7/28/2003 1:49:07 PM
Thanks for the answers to my other post. You nailed it, not char data
types.
How can I iterate through the fields when the fields are int, ntext,
nvarchar, datetime, timestamp? I don't know which datatype the fields
collection doesn't like.
--
Joe Resudek
Frontier New Media
225 Crumme... more >>
Test & Training Application
Posted by A.M at 7/28/2003 11:48:55 AM
Hi,
Could any one refer me to an out of the box web based exam testing system ?
If it there are intranet learning system also available, that also would be
my interest.
Any help would be appreciated,
Ali
... more >>
Classic ASP, Trouble with fields.value
Posted by Joe Resudek at 7/28/2003 11:05:24 AM
running code like:
for each ofield in rs.fields
response.write ofield.value
next
Getting and error that says TYPE MISMATCH. I KNOW that value is a correct
type, right???
Using SQlserver
--
Joe Resudek
Frontier New Media
225 Crummer Lane
Reno, NV 89509
(775) 824-4040
(775) 8... more >>
nightmare day - Cannot get connect to Access DB using ASP page
Posted by oogle NO[at]SPAM buffyslay.co.uk at 7/28/2003 6:56:25 AM
having day from hell
i have db called dbproduct.mdb (its Microsoft Access) it has one table
(tbl_products)
my page is in wwwroot, called products.asp
my db is in db (up one from wwwroot - so if html link from file in
wwwroot would be ..\db\ etc - sorry if teaching to suck eggs)
i just ... more >>
Site Keyword Search Required!!!!!
Posted by David Lozzi at 7/28/2003 12:31:28 AM
Whats the best route for a keyword site search?? I am currently trying to
use FileSystemObjects, but it keeps timeing out. If you have a script that
works, can you give me it?
Thanks!
--
David Lozzi
Associated Business & Technology Group
www.associatedbtg.com
I should've known that....... more >>
deleting DB & tables via webforms
Posted by Harag at 7/27/2003 7:04:01 PM
Hi all
I heard that my DB tables can be truncated, deleted & dropped via uses
using my forms on my site
when a form asks for something like "name & passoword" IE a login form
this is where users/hackers can do nasty things.
instead of typing in the username they type something like:
' ... more >>
Assignment
Posted by Hans & Christine Pedersen at 7/26/2003 9:59:23 PM
Hi - I am taking a course and am supposed to send a message to the
newsgroup. This is it.
Hans
... more >>
comparing queries to flag conflicts
Posted by Alpay Eno at 7/25/2003 10:25:39 PM
Hello all... I'm stuck, I cannot figure out how I should go about flagging
conflicts on a sheduling app. I currently have 8 columns (school grades)
that have class over the course of 9 periods. I am populating the asp page
fine, and making changes to the database with forms lists. I need to compa... more >>
Where to keep the configuration?
Posted by Neo Chou at 7/25/2003 10:34:57 AM
Greetings!
I'm not very good at ASP, but I'm using ASP to design a website. I know
that I can keep some configurable values, such as Server Name, Database Name
and even Login Username and Password in "web.config" under ASP.Net. As to
ASP, is there a way like this? I'm curious about where to... more >>
ASP to read the IIS log files
Posted by WD at 7/24/2003 7:07:57 PM
Hi
I am wanting to use ASP to read the IIS log files on our web server. Can
anyone help?
Thanks
WD
... more >>
Hyperlinking Problem
Posted by J P Singh at 7/24/2003 1:59:27 PM
Hi All
I have an application which acts as a small document management system. Our
users upload the document to the server and the application allows them to
search the record and view the files in the browser.
I am storing the name of the file in the database table and when a user
wants to... more >>
select statement form mutiple data sources
Posted by Aaron at 7/24/2003 12:00:34 PM
Hello,
I have information in a Access data base and a SQL
database, but i need to be able to create a select
statment which pulls information out of both sources.
Any help????... more >>
ASP for Access 2000
Posted by Terry VanDuzee at 7/24/2003 3:27:07 AM
Hello
I have no clue as to how to create asp pages. All I know is that I have
placed my Access DB on Brinkster.com and they say I need to be able to use
asp pages to access the database.
I have no problem with access and I have created the 1 form that I need (in
Access 2k).
Scenario:
User ... more >>
Data Base Select
Posted by Dan Brindle at 7/24/2003 2:27:39 AM
I have an ActiveX control and some data base results on
the same web page. I want to respond to an event and
change the results from the data base without changing
pages.
Is there some sample code that shows a re-query of a data
base inserting the the results into the current page.
... more >>
NTLM Login
Posted by Nick at 7/23/2003 6:46:23 PM
Hi, I'm using NTLM/NTFS security for users to login to a
site with ASP on W2K. Is there a way I can log a user out
with script when he hits a logoff button?
Regards
Nick... more >>
Duplicate value appears on page for 1 field in 1 record
Posted by benverwey NO[at]SPAM hotmail.com at 7/23/2003 4:23:37 PM
This is very very strange. I have an ASP page that reads records from
a database and displays a list of them
on the screen. For some reason the FirstName field for one of the
records gets displayed twice on the screen
For Example...
0391 Richard
0392 Leonard
0395 Ken
0396 Ron... more >>
HTML output
Posted by mf_sina at 7/23/2003 11:34:50 AM
Hi everyone!
I do have a problem with my output.
for example i have a script that counts number of my currently logged-in
visitors.
i want to put the output number in a table cell.
how can i make it done?
thanks
... more >>
Sporadic db connection error - only occurrs on live environment
Posted by shaun NO[at]SPAM greenbutton.ca at 7/23/2003 10:31:13 AM
I get the following error message very sporadically: "The connection
cannot be used to perform this operation. It is either closed or
invalid in this context."
This error does not occur in the development environment, only the
live environment.
It will happen once or twice every hundred tim... more >>
Best paging approach to be used
Posted by navinsm2 NO[at]SPAM rediffmail.com at 7/23/2003 4:14:12 AM
HI,
Guys
There has been a lot of Ways to use paging in asp
1>Recordset approach -where whole records are pulled at client side...
and then only the records which are needed are filtered..
and now that is not the approach good as we are pulling unnesscary all
the 10,000 say for dispalying 10... more >>
Can't connect to a SQL engine running on WS2003 from external webserver
Posted by Bjarke Hvejsel at 7/23/2003 1:42:16 AM
I have an ASP application, hosted externally, which
connects to a SQL engine on my Windows Server 2003.
Until a few weeks ago I ran the SQL engine on a Windows
2000 Server, and could connect from the external
webserver without any problems. But after I installed
WS2003, the external server ... more >>
Collections in ASP: Names vs. Numbers
Posted by Nathan Sokalski at 7/22/2003 9:06:52 PM
I am using the Folder.Files collection to display all the images in a given
directory. The following shows the code I use to create and use this
collection:
Set myfilesys=Server.CreateObject("Scripting.FileSystemObject")
Set mydirectory=myfilesys.GetFolder(Server.MapPath("./emoticons"))
... more >>
Prevent Page Refresh
Posted by Bari Allen at 7/22/2003 5:37:20 PM
How do I prevent a user from going back to a previous page, and also from
refreshing a current page? Forgive me for my ignorance, here; but I've
created a credit card billing page that has a form, which is processed on a
"Thank you form", which processes through Verisign & to a SQL database.
Mo... more >>
paging through recordset
Posted by Jeff at 7/22/2003 3:41:30 PM
Anyone know of a good thread, or tutorial on a an EEFICIENT way of paging
through a recordset using asp and sqlserver.
My tables are about 20,000each
Things needed.
1,_Previous Record Link
2.-List of the number of pages of recordsets returned (in a link format)--to
where if the user wanted... more >>
Help Please - DB Data Repeating
Posted by Jamie Sutherland at 7/22/2003 1:39:50 PM
Hi,
Below is the offending code.. When the code runs it displays the data from
the DB multiple times (depending on how many values DS has). How do I stop
it doing this and only show the data once but have the relevant checkboxes
checked.
Thanks
Jamie
DS = "1, 3, 4, 5, 10 , 99"
objRs.Op... more >>
Displaying fields(columns) in MS Access
Posted by David P. Jessup at 7/22/2003 11:51:23 AM
Good day to everyone.
I have found using various connection types my table display comes up
differently.
If I use an OLEDB type connections my columns are sorted alphanumeric.
If I use an ODBC type connections my columns are sorted based on how they
appear in the actual table.
Is there... more >>
ms access to MYSQL
Posted by manjunatha at 7/22/2003 11:03:31 AM
i have developed a web site in ASP with backend msaccess.
now i have to shift existing data to MYSQL Database, and
use MYSQL database instead of msAccess, what all i need to
DO.. i mean to say how to convert MS Access DAtabase to
MYSQL Database. what kind of changes required in ASP
program... more >>
Oracle - IIS - Win2K - SP4
Posted by Sam Jallad at 7/22/2003 10:33:12 AM
I installed W2K Service Pack 4. I have Oracle 8.1.7 installed on the server.
I also have the IIS running as well.. I can connect to my Oracle database
fine via SQL Plus and the ODBC text works fine. When I try to login to the
web site using ASP, I get the error:
Microsoft OLE DB Provider for ... more >>
Changing Icon on Input
Posted by renie83 NO[at]SPAM lycos.com at 7/22/2003 9:05:53 AM
Hi,
What I would like to do is when a user enters new information to a
table in a database by submitting a form, the icon that was used to
open up the page to let them provide that input should be temporarily
changed. I have everything set up except how to change the icon. I
really don't have a... more >>
|