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: *

  • Users: uhgar
  • Order by date
  1. uhgar

    How do I pass local variables?

    Response.Redirect "nextpage.asp?value1=" & Request.Form("value1")&"&value2="&request.form("value2") Just add '&' before the value2 variable. You need to add '?' before the first querystring variables, but for the subsequent ones you have to add '&' in...
  2. uhgar

    Wanted: A good starting point for ASP

    www.learnasp.com You can this site or the various other links that this provides. What other language do you know? Uhgar -- Alcohol and Calculus never mix! Do not drink and derive! --
  3. uhgar

    Formatting a date

    I am not sure if Format works in ASP; But are you using VB COM layer to get your data? If so after you retrieve it from the DB and before you send it to ASP, you could format it using the Format function. Format(<date>,&quot;DD/MM/YYYY&quot;) Uhgar -- Alcohol and Calculus never mix! Do not...
  4. uhgar

    Debugging VB COM object from ASP

    I would still run it in the Master mode. Compile your VB DLL (Ctrl-f5) and run it. Keep a break point in one of your classes or whereever you feel a bkpt is needed...voila! I think you should have it! Uhgar -- Alcohol and Calculus never mix! Do not drink and derive! --
  5. uhgar

    Redirect.Response question

    I know a way in Javascript go.history(-2) if I am right - check the syntax though! Uhgar -- Alcohol and Calculus never mix! Do not drink and derive! --
  6. uhgar

    Debugging VB COM object from ASP

    What cbokowski would work and the reason it might not work could be when you do not include your ASP pages in a project. Uhgar -- Alcohol and Calculus never mix! Do not drink and derive! --
  7. uhgar

    value not being passed

    Try this: <a href=&quot;displayJobs.asp?Location=&quot;<%=varlocation%>>Search</a> Uhgar -- Alcohol and Calculus never mix! Do not drink and derive! --
  8. uhgar

    Form &quot;action=&quot; variable?

    You need not enter anything in the action attribute as it is not mandatory. Alcohol and Calculus never mix! Do not drink and derive!
  9. uhgar

    MSADODC.OCX will not load

    Have you tried to reboot your machine.... I am pretty serious, this COULD be a solution

Part and Inventory Search

Back
Top