I'd like to thank God and the Academy . . oh wait, that's a different thank you speech. The Mail.To suggestion worked perfectly.
Seriously, I am very thankful for your help DaButcher and everyone else who answered my numerous questions that I've had with this project.
Somehow I got dubbed...
I've got a form that sends results using code from
kav123 in a former post. (Thanks kav).
<%
Set oMail = Server.CreateObject("CDO.Message")
oMail.From = "your-email@your-domain.com"
oMail.To = "recipient@another-domain.com"
oMail.Subject = "Here goes the email subject..."
oMail.HTMLBody =...
I know what the output will look like. Most of it is displayed on the screen after you complete payment.
Thank you. Please print this receipt for your records.
Name on Card: deanbri75
Account Number: xxxxxxxxxxxx0019
Expiration Date: 1207
Amount Paid: $ 1.00
Date and Time...
Thanks, Sheco. That's exactly how the process works.
Not being a real programmer, (and the lack of documentation from touchnet) I wasn't sure how to get the parm values if they weren't coming from a form I'd written.
Perhaps my SQL in the code above is off or maybe it's all wrong. I'll keep...
Here's what I ended up trying. Sadly, it didn't work. Is my syntax wrong somewhere?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
dim tpg_trans_id...
It may be doing that but I don't really know. When you configure touchnet there's two URLs you specify. One is the Post URL which is never seen and the Success URL which tells the user their payment went through ok.
Documentation on this part is really poor. Here's what the manual says:
The...
A brief history about my exposure to ASP: From reading examples/faq's etc. I've done several asp pages that used SELECT, INSERT or UPDATE queries but in each case all the variables came from form data. (form = post) So, I know how to make a db connection, create a recordset, etc.
My current...
I have a form that I want to display results based on the user who authenticated. For instance, SELECT * FROM TABLE WHERE USER = ::username::
I set the permissions for the site to give "DOMAIN/domain users" browse rights so they have to login. Is there a way to capture the login info and use...
I ended up reading a bunch of TSQL stuff on MSDN and found that a cursor was what I needed. It's fabulous dealing with one to many situations on a record by record basis.
DECLARE @RM1 VARCHAR(50), @RM2 VARCHAR(50)
DECLARE RM_CURSOR CURSOR FOR
SELECT TOP 100 PERCENT a.GID AS RM1, b.GID AS...
I have a table with a column containing a term code (200810, 200820, 200730, etc).
I want to create a view (we'll call it View2) with a column value with the most common term code for every record in the View2.
I can get the value I want by using the following select query in a separate View...
I have a View that produces a one-to-many result list. What I need it to do is limit the "many" part to 5 instead of listing every possible result. Here's my query:
SELECT TOP 100 percent a.GID AS Roommate1, b.GID AS Potential_Roommate2
FROM dbo.APPLICATION a INNER JOIN...
I don't know if this will help, my situation sounds similar and here's how I dealt with it. I'm sure there's a more elegant way but this worked well for me.
I have to import data into TableA - this is the one with the duplicates. I want to copy rows into TableB but only if the row doesn't...
Thanks so much 937 for the quick response. It did just the trick.
I've inherited this project and will probably be posting a lot of questions on here as I work through all the nuances of it.
It's kind of like in Star Wars when Luke ran off to fight Darth Vader. Sure, he had the force but...
First a little background: I have an online applicaiton where incoming freshmen apply for campus housing. Part of the app lets them request their rommmate. The roommate requests have to be mutual. (We do random assignments for those that don't request a particular person but that's a...
I have a DTS job that runs daily. It imports a text file into a table. The problem is that the source that produces the text file has no validation to make sure that the data is the type it's supposed to be. Consequently, the text file can contain data that's not of the appropriate type such as...
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.