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 SkipVought 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. gladxml

    Need help debugging this error

    I think the problem is that you are declaring a string on this line and then StrService = "0.4" StrDelinquent = "0.3" StrDuration = "0.2" StrPromos = "0.1" and then you are using it to do the calculation strService= strService * 4 Now in order for you to have the same data type you can do...
  2. gladxml

    secure log in

    try to check out th elink might help. http://www.4guysfromrolla.com/webtech/061902-1.shtml
  3. gladxml

    Format Date

    djmc, You can try the below... Asumming that you have a predefined format like the one that you had posted... <% origdate = &quot;01-01-2003&quot; arrayorigdate = Split(origdate, &quot;-&quot;) arrayorigdate(2) = Right(arrayorigdate(2) ,2) newdate = join(arrayorigdate,&quot;-&quot;)...
  4. gladxml

    response.redirect

    JohannIcon, You are missing this & after the proceedingasp try ot use the revise line of code below Response.redirect (proceedingasp&&quot;?tempID=&quot;&tempid&&quot;&delID=&quot;&delID&&quot;&edit=&quot;&edit) HTH... HAppy progrmaming...
  5. gladxml

    Connection Strings for Access 2002

    Below link are comparison regarding different between different connection string http://www.adopenstatic.com/experiments/ConnStringSpeed.asp for connection string kindly check out the link http://www.able-consulting.com/MDAC/ADO/Connection/ODBC_DSNLess.htm#ODBCDriverForAccess...
  6. gladxml

    Selectbox Problem

    byrne1, First you need to make your checkbox the same name and only the value that will vary depending on your db. For example assuming your recordset object is <input type=&quot;checkbox&quot; name=&quot;chkbox&quot; value=&quot;<%=rs(&quot;ID&quot;)%>&quot;> your asp code would be...
  7. gladxml

    Start a simple ASP site

    Try this link http://www/w3schools.com HTH... Happy programming...

Part and Inventory Search

Back
Top