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 IamaSherpa 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. 611brain

    asp database help

    thanks
  2. 611brain

    asp database help

    hi i am using asp database script. some how width doesn't work in table so is there anyway to work without removing width? Response.write "<TR><td width=67%>" & rs("Uame") & "</td>" here is my error Error Type: Microsoft VBScript compilation (0x800A0409) Unterminated string constant...
  3. 611brain

    Response.redirect doesn't work

    hey sorry, actully this code: txt="asp" txtlen=Len("txt") for counter= 1 to txt Session ("txt")=MID(txt,counter,1) response.redirect("new.asp") Next ________________________________________________________ on new.asp page i wrote it <%Response.Write(Session("txt")) %>...
  4. 611brain

    Response.redirect doesn't work

    Hi, txt="asp" txtlen=Len("txt") for counter= 1 to txt Session ("uname")=MID(uname,counter,1) response.redirect("new.asp") Next _______________________________________________________ the output in new.asp page is different. the output is : a not:asp please help me out thanks
  5. 611brain

    session variable

    Hi, I want to create a security system and prevent someone from bypassing my uservalidation.asp. for example: in uservalidation.asp I created username and password for users. I don't want any users that bypass this page and go to onlineshop.asp. only those with valid username and passwords...
  6. 611brain

    using Instr funcion

    thanks i will try it out
  7. 611brain

    using Instr funcion

    thanks but i want to use instr() function thanks
  8. 611brain

    using Instr funcion

    Hi I want to see if user enter their email address correctly in txtbox or not.. not sure how to check here my code: <form name="form" id="form" method="post" action=""> <p><strong>Customer Login:</strong></p> <p>Username: <input type=text name=username />...
  9. 611brain

    differences between strings and numbers

    hm... can you please explain me more detail with example thanks
  10. 611brain

    differences between strings and numbers

    I have script sample but i don't understand here is my script: <% dtrfirstnum = “35” intsecondnum = 40 strthirdnum = “50” inttotal = strfirstnum * intsecondnum Response.write inttotal %> what is different between "35" and 35.. for example: intsecondnum is "40" and strthirdnum="56"...

Part and Inventory Search

Back
Top