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

  • Users: espar
  • Order by date
  1. espar

    Upload page with validation does not work. Pls help.

    can you write it in .aspx ?? upload components are easier with .net and none of the annoying multipart rubbish.
  2. espar

    need to email user name & password, get CDO.Message.1 error '8004020c'

    the error msg is that ur missing some CDO interface setup. try adding the port - also i think you can leave out the username and pwd entirely rather than leave them blank: myMail.Configuration.Fields.Item _ ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") _ =25
  3. espar

    Check if a select box has been selected

    checkboxes arent included in the request object if they are not checked... so : if request("cbox") <> "" then ... tells you that something was selected.
  4. espar

    The page cannot be found

    have you added .net to the site in IIS and chosen what framework it runs under. other than that perhaps the extension (aspx) are not listed to be handled, check file types.
  5. espar

    Help with passing form data into Email

    formitem=" & request("formitem") & "<br>" & - "..." or if ur happy to just grab the lot: for each item in request.form strBody = strBody & item & "=" & request.form(item) next
  6. espar

    address search

    stasJohn's method is very interesting - nice job. However i would guess the sql server would have a fit executing that query ! ie. doesnt it do (in english terms) for each row in db - patindex every column against the search string. = manual table scan sqlBill's answer is nice and would work...
  7. espar

    address search

    i might be missing your point but the table has the search terms as separate columns. wouldnt it be best to split the search term in the interface and pass thru parameters? declare @city = null, declare @state= null etc etc then just use a normal where clause like WHERE ((city = @city and...
  8. espar

    showhide dynamic table rows

    oops sorry function showhide(obj) { if (obj.style.display... is what i meant (x-language confusion :) )
  9. espar

    showhide dynamic table rows

    just a tip for making show/hide functions easier also call them with showhide(this) then function showhide(object this) then you have a direct handle on the single item to show/hide rather than getting elementbyname
  10. espar

    SQL Syntax for Directory

    i think LIKE '[0-9]%' should work
  11. espar

    Regexp to strip asp tags

    ? i use expresso to test regex's - it is very good and free. your regex works fine in that - so in what environment is it not working and why??
  12. espar

    Update statement syntax

    lol - well he could use an int for a username :) :)
  13. espar

    Update statement syntax

    is that your exact code cause there's some crazy " ing going on :) :) "UPDATE tbl_operators_users SET password="& spassword & " where oid = " & soperatorcode & " and username = " & susername your sql syntax seems fine
  14. espar

    help accessing c# component from asp page?

    lol - we all have those moments :)
  15. espar

    regex non capturing groups

    well i changed it to a negative lookaround and that didnt get included in the capture - whew, itll do what i need. (d[:|]{1}[\\\/]{1})(?!['\x22\\]) ie. has d:\ or d|\ or d:/ etc but no trailing '"\ but i tried many a type of "non capturing" regex's and .net kept getting all characters (at...
  16. espar

    DataGrid Event - Clicking a particular cell in the DataGrid

    use the object inside the cell - ie. add a hyperlink field to the grid
  17. espar

    help accessing c# component from asp page?

    try set myobj = server.create...
  18. espar

    regex non capturing groups

    Hi - any .net regex peeps out there :) i have this regex to update mapped drives with UNC paths (d[:|]{1}[\\\/]{1}))(?:[^\\n]\w) which using expresso successfully gets d:\ or d|\ back with the exception of some d:\n' newline bits here and there. in .net when using the replace method the non...
  19. espar

    help accessing c# component from asp page?

    personally i find it easier to build a setup program marked with build for com interop. do the install and it all works noice (oh the hassles i have had with com interop...bleah) just watch out cause IIS caches the assembly and needs a iisreset /restart to clear old versions.
  20. espar

    removing a callback?

    Lol - it would but then i fear that Outlook would cease to function =p ie. you'd remove all callback methods from the selection change event... Well after a day of head scratching and posting this morning - i just found my stupidity !@! In the method which was being called from the handler i...

Part and Inventory Search

Back
Top