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. lobstah

    Hoe to send current page as attached file?

    Here's a simple example using CDONTS as your email component: <% If Request.Form(&quot;Email_It&quot;) = &quot;yes&quot; Then Call sendMail(Request.Form(&quot;Email_Address&quot;)) Else %> <Form method=&quot;post&quot; name=&quot;Email&quot; action=&quot;thispage.asp&quot;> <input...
  2. lobstah

    &quot;Too few parameters&quot;??

    Password is a reserved word. Could also be an error if your variable strUserName is empty. add response.write strSQL before objRS.Open strSQL, objConn to see what is actually passed into your sql statement.
  3. lobstah

    WTF is wrong w/ this code...it''s driving me NUTZ!

    your result ends up in sLastRMA, but you set the value of your formfield to iLastRMA....... try changing <input type=&quot;text&quot; name=&quot;textfield&quot; value=&quot;<%=iLastRMA%>&quot;> to <input type=&quot;text&quot; name=&quot;textfield&quot; value=&quot;<%=sLastRMA%>&quot;> if...
  4. lobstah

    WTF is wrong w/ this code...it''s driving me NUTZ!

    unless you have another recordset that you're not showing, you need to access the same recordset that you created in your code. and the only field you selected in that recordset is RMAnum, so you have to use the same field name. unless, as i said, there's more code that you aren't...
  5. lobstah

    WTF is wrong w/ this code...it''s driving me NUTZ!

    also, i think you need to convert to numeric BEFORE you increment by 1: '** convert the string to an int and add &quot;1&quot; to the value sLastRMA = CStr(CInt(iLastRMA) + 1)
  6. lobstah

    This Code Works Fine (may need to b

    i thought i detected your sarcasm, but on the off chance that you were REALLY asking.......
  7. lobstah

    Microsoft VBScript runtime error '800a01a8' Object Required

    found this at the ASPEmail site, thought it might shed some light on your problem ronijack: When running the SendMail.asp sample application, I always receive the following error message. What does it mean and how can I fix it? Microsoft VBScript runtime error '800a01a8' Object required...
  8. lobstah

    This Code Works Fine (may need to b

    Integer - numeric String - alphanumeric
  9. lobstah

    Looping through 2 recordsets - part 2 - arrays ?

    i'm not real good with sql server, but maybe you can create stored procedures and run those, try posting on the sql server forum to get more info on that. i think that will greatly improve speed and streamline your code too.
  10. lobstah

    Problem With Form Sending Back a StringList Instead of an Int

    can you post how your <input> tag is formatted? i don't understand how you get 4, 5. If 500 is overwritten with 400, then it should submit 400 in the form.....
  11. lobstah

    Looping logic????

    what is myArray1? do all 3 arrays have the same number of elements? to be safe, i would loop thru each of the 2 arrays individually, which you're doing anyway.... dim max_val max_val = 0 For i = 0 to UBound(myArray2) If (max_val < myArray2(i)) Then max_val = myArray2(i) End If Next...
  12. lobstah

    Workign with the tick in an SQL statement

    dim lastname lastname = &quot;O'Mally&quot; rst.Open &quot;SELECT * FROM Person WHERE LastName='&quot; & lastname & &quot;';&quot; to store it in the db: conn.execute &quot;UPDATE Person SET LastName='&quot; & Replace(lastname, &quot;'&quot;, &quot;''&quot;) & &quot;';&quot;
  13. lobstah

    Looping through 2 recordsets - part 2 - arrays ?

    what kind of db? (ms access, sql server)?
  14. lobstah

    How do I upload a file from my hard drive?

    <form name=&quot;formname&quot; action=&quot;scriptname.asp&quot; method=&quot;post&quot; enctype=&quot;multipart/form-data&quot;> <input type=&quot;file&quot; maxLength=&quot;100&quot; name=&quot;uploadfile&quot; size=&quot;30&quot;> <input type=&quot;submit&quot; name=&quot;submit&quot...
  15. lobstah

    Looping through 2 recordsets - part 2 - arrays ?

    oh, yeah. sorry about that...... speed issues: are they large databases/tables? are your queries returning a large amount of data? the server(s) that the databases reside on, are they overly busy?
  16. lobstah

    Looping through 2 recordsets - part 2 - arrays ?

    If speed is an issue, then I'll repeat what I mentioned in your first post on this issue: I also think that you can combine this into one select statement: sql = &quot;SELECT DISTINCT [RepGenA].[filename], EstablishmentID, DfEE, EstablishmentName FROM RepGenA, Establishments WHERE...
  17. lobstah

    Looping through 2 recordsets - part 2 - arrays ?

    <TD BORDERCOLOR=#c0c0c0 nowrap><FONT SIZE=2 FACE=&quot;Arial&quot; COLOR=#000000><a href=&quot;./viewschool.asp?Establishment=<%=Server.HTMLEncode(EstablishmentID)%>&quot;><%=Server.HTMLEncode(DfEE)%>, <%=Server.HTMLEncode(establishmentname)%></A><BR></FONT></TD> that should work. you can...
  18. lobstah

    Looping through 2 recordsets - part 2 - arrays ?

    try using what you had originally in place.... Set RScompany = MyConncompany.Execute(SQLcompany)
  19. lobstah

    Looping through 2 recordsets - part 2 - arrays ?

    instead of your do while not recordset.eof ..... loop use the dim i, EstablishmentID, DfEE, EstablishmentName for i=0 to UBound(arrRows,2) EstablishmentID = arrRows(0,i) DfEE = arrRows(1,i) EstablishmentName = arrRows(2,i) 'then add your 2nd recordset code in here....... next is...

Part and Inventory Search

Back
Top