Right at the top of the next page (upon a user hitting the submit button), do this:
Response.Write Request.Form("textfield")
Response.Write Request.Form("textfield2")
See if you're actually getting any data at all from the form. From the code, it doesn't look like there...
It might be worth your while to look into Visual Studio Installer. I think it will solve your problem.
You can download it here:
http://msdn.microsoft.com/vstudio/downloads/tools/vsi11/default.asp
To err is human, but to really foul things up requires a computer.
- Farmers' Almanac, 1978
From my MSDN Library:
A Dictionary object is the equivalent of a PERL associative array. Items, which can be any form of data, are stored in the array. Each item is associated with a unique key. The key is used to retrieve an individual item and is usually a integer or a string, but can be...
You could do this:
UserForm.AddCountries.style.visibility='hidden'
To err is human, but to really foul things up requires a computer.
- Farmers' Almanac, 1978
Try setting a size to your columns, like so:
<TD size="80%">
To err is human, but to really foul things up requires a computer.
- Farmers' Almanac, 1978
It sounds like you're trying to add a record into OBJECT that has no parent in LESSON. Make sure Request.Form("lessonID") is a valid LessonID in your LESSON table.
To err is human, but to really foul things up requires a computer.
- Farmers' Almanac, 1978
Maybe it needs to be so:
<option value="<%=(objRS("[MONTH/YEAR]")%>"><%=(objRS("[MONTH/YEAR]")%></option>
To err is human, but to really foul things up requires a computer.
- Farmers' Almanac, 1978
Try Response.Write to view your SQL statement prior to sending it to Oracle.
To err is human, but to really foul things up requires a computer.
- Farmers' Almanac, 1978
Here's how you do it (just missing an ampersand):
AND (L.LOGINID = '" & Session("LoginID") & "')
To err is human, but to really foul things up requires a computer.
- Farmers' Almanac, 1978
Oops, the <a> tag needs to be closed.
<A name="maillink" href="#"></A>
Hope this helps.
To err is human, but to really foul things up requires a computer.
- Farmers' Almanac, 1978
How about just using client-side script within welcome.asp instead?
Here's your 'Send' button and an invisible <a> tag:
<INPUT type=button value="Send" onclick="doEmail();">
<A name="maillink" href="#">
Here's your script:
<script language=JavaScript>...
The problem here is that you've ended the value for the href element of the <a> tag before completing the URL.
The resulting HTML would be:
<a href='ProcedureDetails.asp?Details='MyCategory>MyCategory</a>
whereas your code should be this:
<a...
I don't see where you're setting a session variable at all. You'd have to set your session like so:
session("ResidentName") = "something"
Hope this helps.
Choo Khor
choo.khor@intelebill.com
Move your single quote "'" from Details=' to "'>". Should solve your problem.
Response.Write _
"<TR ALIGN=CENTER>" & _
" <TD>" & "<a href='ProcedureDetails.asp?Details=" & rsSummary("category") & "'>" &...
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.