Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. khorjak

    Can you explain me this code lines

    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...
  2. khorjak

    Preventing Multiple Install Instances

    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
  3. khorjak

    Associative/Hash Array within ASP

    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...
  4. khorjak

    Set a Button To Type=Hidden from vbscript

    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
  5. khorjak

    Text not wraping

    Oops, should have been: <TD width=&quot;80%&quot;> To err is human, but to really foul things up requires a computer. - Farmers' Almanac, 1978
  6. khorjak

    Text not wraping

    Try setting a size to your columns, like so: <TD size=&quot;80%&quot;> To err is human, but to really foul things up requires a computer. - Farmers' Almanac, 1978
  7. khorjak

    Add New Record in Access Database

    It sounds like you're trying to add a record into OBJECT that has no parent in LESSON. Make sure Request.Form(&quot;lessonID&quot;) is a valid LessonID in your LESSON table. To err is human, but to really foul things up requires a computer. - Farmers' Almanac, 1978
  8. khorjak

    Paging problem?

    Try removing the word 'Public' from the Function name. To err is human, but to really foul things up requires a computer. - Farmers' Almanac, 1978
  9. khorjak

    Get data to show up in a drop down menu

    Maybe it needs to be so: <option value=&quot;<%=(objRS(&quot;[MONTH/YEAR]&quot;)%>&quot;><%=(objRS(&quot;[MONTH/YEAR]&quot;)%></option> To err is human, but to really foul things up requires a computer. - Farmers' Almanac, 1978
  10. khorjak

    Syntax for Passing a session variable to Oracle as a parameter

    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
  11. khorjak

    Syntax for Passing a session variable to Oracle as a parameter

    Here's how you do it (just missing an ampersand): AND (L.LOGINID = '&quot; & Session(&quot;LoginID&quot;) & &quot;') To err is human, but to really foul things up requires a computer. - Farmers' Almanac, 1978
  12. khorjak

    Beginner's Question

    Oops, the <a> tag needs to be closed. <A name=&quot;maillink&quot; href=&quot;#&quot;></A> Hope this helps. To err is human, but to really foul things up requires a computer. - Farmers' Almanac, 1978
  13. khorjak

    Beginner's Question

    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=&quot;Send&quot; onclick=&quot;doEmail();&quot;> <A name=&quot;maillink&quot; href=&quot;#&quot;> Here's your script: <script language=JavaScript>...
  14. khorjak

    ordering output

    Use the following SQL statement: SELECT * FROM TableName ORDER BY Color Choo Khor choo.khor@intelebill.com
  15. khorjak

    lost session variable?

    I think this is what you're looking for: <html> <head> <script language=JavaScript> function setVal(x){ document.frmTest.sName.value=x; } </script> </head> <body> <form name=frmTest> <input type=hidden name=sName value=&quot;&quot;> <select name=nID...
  16. khorjak

    The value can not be passed into ASP page

    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...
  17. khorjak

    lost session variable?

    I don't see where you're setting a session variable at all. You'd have to set your session like so: session(&quot;ResidentName&quot;) = &quot;something&quot; Hope this helps. Choo Khor choo.khor@intelebill.com
  18. khorjak

    The value can not be passed into ASP page

    Move your single quote &quot;'&quot; from Details=' to &quot;'>&quot;. Should solve your problem. Response.Write _ &quot;<TR ALIGN=CENTER>&quot; & _ &quot; <TD>&quot; & &quot;<a href='ProcedureDetails.asp?Details=&quot; & rsSummary(&quot;category&quot;) & &quot;'>&quot; &...
  19. khorjak

    How do I carry values from Form via HTML formatted email using CDONTS?

    Do this: objMail.Body = &quot;<html> Hello, <input TYPE=text NAME='Name' value=&quot; & Request.Form(&quot;Name&quot;) & &quot;></html>&quot; Choo Khor choo.khor@intelebill.com
  20. khorjak

    Dynamic link based on cookie...

    Try this: <% if request.cookies(&quot;user&quot;)(&quot;firstname&quot;) = rsResults(&quot;Dataenteredby&quot;) And request.cookies(&quot;user&quot;)(&quot;lastname&quot;) = rsResults(&quot;Dataenteredby&quot;) then response.write &quot;<a href=&quot;&quot;deleterecords.asp?id=&quot; &...

Part and Inventory Search

Back
Top