Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 50
Search took 0.26 seconds.
Search: Posts Made By: details
Forum: JavaScript programming 04-18-2003, 04:08 PM
Replies: 1
Views: 1,672
Posted By details
Format Currency without decimal

How can I write this to round the decimals up and drop them.

document.form.strTotalMonthExpense.value = parseFloat(document.form.strPHHMortgage.value)
+parseFloat(document.form.strTax.value)...
Forum: JavaScript programming 02-11-2003, 05:59 PM
Replies: 4
Views: 995
Posted By details
Recurring Billing

Basically I have a site developed in ASP/Access database. This site is for a health network. I currently have real time processing setup through authorize.net.

I would like to make my backend...
Forum: JavaScript programming 02-11-2003, 05:40 PM
Replies: 4
Views: 995
Posted By details
Automated Submit Button

Is it possible to have a script automatically submit information from a web site based on the date.

So every 30 days or so, the script will run and submit info without having to click the submit...
Forum: JavaScript programming 12-18-2002, 02:41 PM
Replies: 5
Views: 1,259
Posted By details
I agree!! Thanks for the help guys!

I agree!! Thanks for the help guys!
Forum: JavaScript programming 12-17-2002, 08:52 PM
Replies: 5
Views: 1,259
Posted By details
Netscape 4.7

I still cannot get it to work in 4.7.

Oh well!!
Forum: JavaScript programming 12-17-2002, 08:00 PM
Replies: 5
Views: 1,259
Posted By details
Not working in netscape

How can I modify this script below to work with Netscape

<head>
<script language="javascript">
<!--
var Open = ""
var Closed = ""
Forum: JavaScript programming 11-27-2002, 08:15 PM
Replies: 1
Views: 1,399
Posted By details
Popup Window with redirection after close

I have a page that asks for the users email. Once the user fills in his email, there is a popup window with the email be auto populated asking for more information from the user. Once the user fills...
Forum: ASP 10-18-2002, 05:36 PM
Replies: 2
Views: 1,081
Posted By details
Drop Down Selection

<select name="intPrice">
<option value="all">All Price Levels
<option value="= 40 OR <350">Under $350
<option value="500"> Under $500
<option...
Forum: ASP 10-16-2002, 12:29 AM
Replies: 3
Views: 1,006
Posted By details
I got it........

I was using the ADC Direct Response, and after all my pulling of teeth and arranging of code, I simply removed all reference to referring urls, receipt urls, etc. Now it works.


Thanks for...
Forum: ASP 10-15-2002, 07:54 PM
Replies: 3
Views: 1,006
Posted By details
ADC Response for CC Processing

I am linking to or trying to link to Authorize.net using ADC Response or the Relay Response.

I am having trouble getting all of it to work. If anyone has any experience with these responses,...
Forum: ASP 10-08-2002, 12:07 AM
Replies: 6
Views: 1,098
Posted By details
The code was given to me. The error I am getting...

The code was given to me. The error I am getting with Friendly error turned off is

The page cannot be displayed
There is a problem with the page you are trying to reach and it cannot be...
Forum: ASP 10-04-2002, 11:48 PM
Replies: 6
Views: 1,098
Posted By details
Browser Based Uploading of Images

The following code is in popup window to a main form.

This code has worked online before for browser based uploading of images.

For some reason when I move it to my local machine running IIS...
Forum: JavaScript programming 09-14-2002, 12:08 AM
Replies: 1
Views: 1,008
Posted By details
Simple Rollover giving erros in Netscape

I am getting image1on is not defined. and image1off is not defined. when viewed in Netscape 4. Any suggestions?


<SCRIPT>
<!--
if (document.images) {
image1on = new Image();
image1on.src...
Forum: ASP 08-26-2002, 06:16 PM
Replies: 3
Views: 1,193
Posted By details
CDONTS Attachments

I am using CDONTS to e-mail attachments using
objMail.AttachFile("e:\web\attachments\direcway.htm")

My customer has several agreements that must be e-mailed depending on product purchased. Is...
Forum: ASP 08-14-2002, 11:18 PM
Replies: 1
Views: 1,766
Posted By details
CDONTS with attachments

I am using the following CDONTS code:
<%

Dim strFrom
Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail")

objMail.From = request.form("strFrom")
objMail.Subject = "Here...
Forum: ASP 08-08-2002, 05:30 PM
Replies: 3
Views: 1,975
Posted By details
Select Statement Syntax

Can this be written into a select statement?


Conn.Execute("SELECT * FROM products where catalogID="
&Request.QueryString("intCategory"))
Forum: ASP 08-05-2002, 04:27 PM
Replies: 15
Views: 3,391
Posted By details
Thanks

I got it. I just took out the application variable and made a function to get the MaxOrderID. Works greats. Thanks for all the help.
Forum: ASP 08-02-2002, 04:16 PM
Replies: 15
Views: 3,391
Posted By details
Simple Fix

I just created a function and replaced all code requesting the application variable. This works fine. Thanks for all the help!!!

<%

function GetNextOrderID()
dim rsMaxOrder


set...
Forum: ASP 08-01-2002, 08:14 PM
Replies: 1
Views: 1,438
Posted By details
Do not Open Exclusively

How can I rewrite this function to open as shared instead of exclusivly. I am getting an error of file already in use?



function GetNextOrderID()
dim Conn
dim rsMaxOrder

set Conn...
Forum: ASP 08-01-2002, 05:32 PM
Replies: 2
Views: 12,302
Posted By details
rs.open Conn, adOpenDynamic, adLockOptimistic, adCmdTable

Is the rs.open line correct?


function GetNextOrderID()
dim Cmd
dim rs

cmd = "SELECT MAX(orderID) AS LastID FROM itemsOrdered

rs.open Conn, adOpenDynamic,...
Forum: ASP 08-01-2002, 04:30 PM
Replies: 15
Views: 3,391
Posted By details
Ok so I have added the following the the...

Ok so I have added the following the the global.asa below:
session("orderID")=0
session("customerID")=0
see below...to make sure I did it right.

K, now, where does customerID come into...
Forum: ASP 08-01-2002, 03:28 AM
Replies: 15
Views: 3,391
Posted By details
Why????

I guess I don't understand why this is happening? Why would it reset when it is at 2076 and go back to 1
Forum: ASP 08-01-2002, 03:12 AM
Replies: 15
Views: 3,391
Posted By details
I don't understand

I am not sure about step 1. What do you mean? What do I delete and do I insert the Sub Session_OnStart below?


. fix your global.asa and make a session-variable. Delete the previous application...
Forum: ASP 07-31-2002, 03:22 AM
Replies: 15
Views: 3,391
Posted By details
Add primary key??

I have an access database with a products table, an itemsorder table (shopping cart) and an orders table for completed orders.

When some one adds to their basket, it writes the orderID, quantity...
Forum: ASP 07-30-2002, 03:31 PM
Replies: 15
Views: 3,391
Posted By details
Here is my global.asa and your right, now what can I do to fix.

<SCRIPT LANGUAGE=VBScript RUNAT=Server>



Sub Application_OnStart
'==Visual InterDev Generated - startspan==
'-- Project Data Environment
'Set DE =...
Showing results 1 to 25 of 50

 
Forum Jump

All times are GMT +1. The time now is 06:16 PM.