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

    Sorting An Array

    Are there any good functions for sorting an array of integers?
  2. frOblivion

    My Browser Wont Truly Refresh! (Win2000&ASP)

    I am using Win2000pro, IIS 5, IE 5 and ASP. I clear my internet History, empty my temp folders, click refresh 100 times and still my browser is not recompiling my scripts. It is just showing me the HTML output from old versions of the script. This just started happening, I'm not sure why, I...
  3. frOblivion

    Sending POST data with .REDIRECT()

    Ahh that is what I was looking for. Thanks, I dropped you click to tipmaster rating. Take it ez, fr0blivion
  4. frOblivion

    Looping through large recordsets

    At the beginning of your script type Server.ScriptTimeout = 120 Where 120 can be any number you want it to be. I forget whether that number is minutes, seconds, or milliseconds. I use a lot of times functions and get them mixed up. I think its minutes though.
  5. frOblivion

    Sending POST data with .REDIRECT()

    Hmm I was afraid of that. I am trying to redirect to a credit card merchant server which only accepts its data through a form post. Basically the user gets a page from my server to enter their credit card info. When they click post my form is supposed to point to the credit card merchant...
  6. frOblivion

    Sending POST data with .REDIRECT()

    I need to Redirect to a page, but I need to send <FORM method=POST> data to the page I am redirecting to. Any help would be appreciated.
  7. frOblivion

    accepting 's from a search text in an SQL string

    I know a very simple way to do this, The ' will cause an error. But if it were a double apostrophe, '' Then it would not cause an error. So When You Are Requesting Your Values From The Form Simply Change Any ' To '' Like This: Dim anyStringVariable anyStringVariable =...
  8. frOblivion

    A very strange error.

    Thanks to all who posted. The resolution was this: In the opening of my database connection, Had to change this: Set objDB = Server.CreateObject(&quot;ADODB.Connection&quot;) objDB.Open strDBString, &quot;Admin&quot;, &quot;pitfall&quot; To This: Set objDB =...
  9. frOblivion

    A very strange error.

    Thanks For The Replies, here is the entire track_user.asp script <% Dim strRefer Dim strRemoteIP Dim strDate DIm strTime Dim strBrowser Dim strOS Dim strPage Dim strExt Dim trkSQL Dim dbTrack strRefer = Request.ServerVariables(&quot;HTTP_REFERER&quot;) strRemoteIP =...
  10. frOblivion

    A very strange error.

    OK, I have a view tracking system that submits info to my db everytime a page is loaded. If I try to browse through more than 2 or 3 pages on my site I get this error. Microsoft OLE DB Provider for ODBC Drivers (0x80004005) [Microsoft][ODBC Microsoft Access Driver] Operation must use an...
  11. frOblivion

    Fetching the last ID

    You can also execute this statement once the record has been inserted. &quot;SELECT Max(emp_id) FROM tblEmployee ... If your id field is a numerical incrementing field. Make sure to lock any other transactions so no one slips a new record in between the time of your INSERT and SELECT.
  12. frOblivion

    Display A Default Image When User Is A Moron

    I have written an app which loops through ads in a database and displays them for users that pay for the service on my site. No matter what I tell them many cannot upload images with the correct naming convention, file type, whatever... I would like a default picture to appear when their...
  13. frOblivion

    Hello Everyone, A very tricky ques

    I would switch to Java for this and make an applet or better yet a servelet. Sounds as if you may be building something that in the future may become limited with ASP.
  14. frOblivion

    ASP Rookie

    Your HTML must be a little off. Code to standard HTML conventions and you should be fine. Remember Netscape is much pickier than IE. IE will ignore many HTML mistakes that Netscape will not. Make sure to close ALL tags you open and try to stay away from embedded forms (forms inside of...

Part and Inventory Search

Back
Top