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

    Join of multiple tables

    I'm a newbee in sql and I'm just trying to connect two tables in an access database through asp. It is a 1 to n relationship, of which I'd like to display everything of the first table together with the last entry of the second table. Does anyone know how the join statement would look like? The...
  2. docblop

    Timeout expired problem

    It is not the timeout of the asp but of the odbc connection. Simply go to your DSN-ODBC administration page (on win2000 under administrative tools --> data sources). In the advanced configuration of your DSN-connection you can set the timeout of the database connection. Mike..
  3. docblop

    exist Session Variable?

    if session("whatever")="" then do_what_to_do_if_session_does_not_exists else do_what_to_do_if_session_exists end if Hope that helps.. Mike..
  4. docblop

    Making a random ad system

    hi hallm,<br><br>IIS comes with a build in component for that. Use the following code:<br><br><font color=#00ff00>&lt;%<br>Dim adrot<br>Set adrot= Server.CreateObject(&quot;MSWC.AdRotator&quot;)<br>adrot.Border=0<br>adrot.Clickable=True<br>adrot.TargetFrame=&quot;_new&quot;<br>Response.Write...
  5. docblop

    safileup prob

    I guess the file safileup.dll is a component. The easiest way to register a component is to put it in your c:\windows\system32 folder.<br><br>After that simply type:<br>REGSVR32 SAFILEUP.DLL<br>in a dow window.<br><br>That should work fine..<br>
  6. docblop

    How to use ASP to Detect ScreenResolution and Color??

    You could use javascript to autodetect the resolution and let javascript write it in a form field.<br>This form could submit itself using *this.form.submit*.<br>After that you can retrieve the information using Request.Form(&quot;resolution&quot;).<br>
  7. docblop

    redirecting?

    You can make any queries to databases, request any server variables or do any asp stuff *before* sending html code to the client. Therefore there is really no need to send stuff to the browser before redirecting. If you still have to redirect you could use the meta refresh-tag which looks...
  8. docblop

    ASP + JavaScript

    There is no way to turn Javascript to ASP. Javascript is executed on the client's machine. ASP is executed on the server before the client get's the page. <br><br>The only way to send Javascript information to an asp page is using the post or get method and requesting the same page again.<br>

Part and Inventory Search

Back
Top