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 Mike Lewis 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. tarrike

    Could somebody have a look at this

    I get a missing & at " WHERE BreederNo =" & Val(Request.Form("txtBreederNo")), and you'll want to put a space before WHERE so it should look like mySQL = "UPDATE Breeders SET PupsAvailable ='" & Request.Form("txtPupsAvailable") & "'" & &quot...
  2. tarrike

    @@identity problem

    I think your DBA will probably want to see something like set @x = (SELECT @@IDENTITY ) The overhead on this is almost zero. The set @x = (select max(RecordID) from Table1) if you have a very large table, or a large number of records, will get quite timely, but will be just as effective on...
  3. tarrike

    Response.Redirect to a document

    okay, to redirect to a document, you have to tell the server what type it is first, by using Response.ContentType. In playing with it, this seemed to open all of my documents. Response.ContentType = "application/word" Thanks to all Tom
  4. tarrike

    Response.Redirect to a document

    I don't have the luxury of hard coding it in. There may be from 1 to 100's of documents in the directory I am building the list from. I need to create a link to a document, be it Word, Excel or Powerpoint, log that the document was opened, and display it to the user. Does that clear up any...
  5. tarrike

    Response.Redirect to a document

    I'm not at all opposed to running a script, I just need to go to the document that selected...
  6. tarrike

    Response.Redirect to a document

    Is there a way to Response.Redirect to a document (mydoc.doc)? I can create a link to the doc and it opens just fine. But when I try to redirect to it all I get is binary garbage. aValues(2) = "Mydoc_in_a_special_directory.ppt" ... page =...

Part and Inventory Search

Back
Top