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

    Sql record being inserted twice. Don't want it to.

    This looks fine...doesn't seem as if two inserts should be happening. Has this been resolved? gettin' jiggy wid' it -- smbure
  2. smbure

    Include File Returning Error

    What does the include tag look like? It should be one of these: <!-- #include virtual=&quot;/IncludeFiles/brkDBConn.inc&quot; --> OR <!-- #include file=&quot;IncludeFiles/brkDBConn.inc&quot; --> gettin' jiggy wid' it -- smbure
  3. smbure

    java's stringtokenizer in asp

    If u are using vbscript- CommaDelimitedResults = &quot;1,2,3,4,5&quot; NewArray = Split(CommaDelimitedResults, &quot;,&quot;) gettin' jiggy wid' it -- smbure
  4. smbure

    Joining 3 tables

    Would this work? &quot;SELECT Catalogs.Catalog_Reference, Catalogs.Catalog_Month, Catalogs.Catalog_Year, ProductModels.ProductModel_Model, CatalogTypes.CatalogType_Description FROM ProductModels INNER JOIN Catalogs ON Catalogs.Catalog_ProductID = ProductModels.ProductModel_ProductID...
  5. smbure

    To COM or not to COM?

    I have two waring factions, one for com, and another for pure asp. I personally like the n-tier approach. As far as application performance only, which is faster??? I have done tests on small scales that prove the component isn't much faster at all. I have over a million contact records in...
  6. smbure

    Interesting error

    Are yo positive ODBC has drivers for access 97...check this at Microsoft. gettin' jiggy wid' it -- smbure
  7. smbure

    Need Some Help ASAP!

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cdo/html/_denali_newmail_object_cdonts_library_.asp This may help u... gettin' jiggy wid' it -- smbure
  8. smbure

    Prompt for Attachment from ASP/WEB page (clarification)

    Try File.SaveToDisk Server.MapPath(&quot;/UploadedFilesDirectoryInWebFolder&quot;) See if the permissions are right... gettin' jiggy wid' it -- smbure
  9. smbure

    Refresh Just Once

    I don't understand the goal. Could you explain how someone gets to this page, and what you must do upon back()? gettin' jiggy wid' it -- smbure
  10. smbure

    How to use a complex range in a complex IF statement

    Actually...they need to be OR, sorry if((RS(&quot;AssetNum&quot;).value = &quot;87500&quot;) || (RS(&quot;AssetNum&quot;).value >= &quot;88800&quot; && RS(&quot;AssetNum&quot;).value <= &quot;88900&quot;) || (RS(&quot;AssetNum&quot;).value >= &quot;85000&quot; && RS(&quot;AssetNum&quot;).value...
  11. smbure

    How to use a complex range in a complex IF statement

    Wouldn't it be (if all conditions were and): if((RS(&quot;AssetNum&quot;).value = &quot;87500&quot;) && (RS(&quot;AssetNum&quot;).value >= &quot;88800&quot; && RS(&quot;AssetNum&quot;).value <= &quot;88900&quot;) && (RS(&quot;AssetNum&quot;).value >= &quot;85000&quot; &&...
  12. smbure

    !!!! Please Help - Response.ContentType = &quot;application/vnd.ms-word&quot;

    Wushutwist- I agree 100%. The problem is that I have images on the server that I need to embed in the word doc....any suggestion??? gettin' jiggy wid' it -- smbure
  13. smbure

    !!!! Please Help - Response.ContentType = &quot;application/vnd.ms-word&quot;

    When I do this - <%Response.ContentType = &quot;application/vnd.ms-word&quot;%> <html><head></head><body>Hi Mom!</body></html> The results in Word 97 display the html code instead of just &quot;Hi Mom!&quot;. This works fine with Office 2000 & Office XP (2002) Anyone???? gettin' jiggy wid'...
  14. smbure

    Outlook web components

    I have a portal software app. that uses the oulook web components and it requires the browser's security settings to be set to &quot;low&quot;. Anyone know how to easily make these components &quot;trusted&quot;? thanks gettin' jiggy wid' it -- smbure
  15. smbure

    Export a database table using ASP

    Since ADO 2.1 you can persist a recordset into an XML text file, and since 2.5 you can persist the data in either a file or any object that supports the IStream interface. To answer you question, I would select all the contents from a table, use the Recordset.Save method and write the text...
  16. smbure

    Response.Redirect blows out frame

    It seems as if the Redirect method is issuing a browser redirect and not just a frame redirect. Try response.writeing the meta refresh tag like this: Response.Write &quot;<META http-equiv='Refresh' content='1;url=&quot; & strPageUrl & &quot;'>&quot; The strPageUrl variable is the page...
  17. smbure

    Help javascript-vbscript

    Dilip, Create a javascript multi dimensional array on the client written from asp, refer to the document id as the pk and extract the data on the select event. gettin' jiggy wid' it -- smbure
  18. smbure

    loop problem

    Discusmania- Let me know some more details about what is needed here. I am a consultand at Intel right now and I am familiar with this concept. I have both script and tsql solutions. Also, If you work here at Intel, doesn't this years first day start on 12/31/2000... gettin' jiggy wid'...
  19. smbure

    What's wrong with this syntax?

    The comma after Lname = 'Arseneault', should be removed. ex: UPDATE login SET FName = 'Mike', Lname = 'Arseneault' Where Cardnum = 27822094 gettin' jiggy wid' it -- smbure

Part and Inventory Search

Back
Top