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 Chris Miller 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: biomed
  • Order by date
  1. biomed

    ACCESS 2000 FORMS TO ASP

    Hi, I saw someone save their Access 2000 project as HTML with "Save as..." and it did pretty much what you want. The code was horrible and unwieldy, but it seemed to work. Simon
  2. biomed

    Textarea- Value Property

    Hi, In a text area, the 'value' goes in between the tags. So, for instance... <TEXTAREA id=txtacomm style=&quot;WIDTH: 482px; HEIGHT: 76px&quot; name=txtacomm cols=68 tabindex = 16>test</TEXTAREA> Simon
  3. biomed

    Confused displaying'no records found' message

    Hi, I tend to check the RecordCount of the returned recordset and if so, display a message and stop processing. Where RS is your recordset, an example would be: if RS.RecordCount = 0 then RS.Close response.write &quot;No records were returned&quot; response.write...
  4. biomed

    SQL Problems

    Hi, Have you tried this without the OR? Theoretically, you don't need it because Category=1 is one of the conditions covered by CategoryID <> ''. I'd write it as: SELECT * FROM dbo.products WHERE (CategoryID LIKE '%') AND (ProductName LIKE '%%') AND (CategoryID <> '') ORDER BY ProductName; Simon
  5. biomed

    Redirecting when Session Times Out

    Dear Ann, Another way of doing this would be to store two session variables when the user logs in. One holds the amount of time that particular user is allowed, and the other holds the time of login. Leo's JavaScript could then be modified to add the two session variables. If the result is more...
  6. biomed

    Intermittent ODBC errors

    Dear Biff, I too have had similar problems and, like Cirrus, it was because of busy servers. There were thousands of users on the same server, and a limit on the amount of concurrent database connections. At busy times of the day, all my database-driven pages fell over. Other ASP & HTML pages...
  7. biomed

    Editing ASP variables in VB script

    Dear Terry, I think the question you are asking is about how you share variables between client-sided VBScript and the VBScript ran server-side inside ASP pages. The honest answer is that you can't. The ASP page runs on the server, creates a web-page, and then ceases. The results (the web-page)...

Part and Inventory Search

Back
Top