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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Bagadonutz

  1. Bagadonutz

    New to ASP

    www.fmstocks.com
  2. Bagadonutz

    How can I get the value from a dynamic table

    <table> <%Do while not RECORDSET.EOF%> <tr> <td> <a href = NEXTPAGE.asp?strResult=<%=RECORDSET(&quot;RESULT&quot;)%>><%=RECORDSET(&quot;DISPLAY RESULT&quot;)%></a> </td> </tr> <%RECORDSET.movenext loop%> </table> On the NEXTPAGE.asp: <% sSql = &quot;Select *...
  3. Bagadonutz

    Coding a hyperlink to another page

    Below is your standard hyperlink: <a href=PAGE YOU WANT TO LINK TO>CLICK ME TO GO TO PAGE</a> Below will pass data: <a href=PAGE YOU WANT TO LINK TO?varname=&quot;data&quot;>Click Me to Pass Data VIA URL</a>
  4. Bagadonutz

    ADO connect, don't really know what I am doing!

    I would not recommend using the ADO Data Control. Connect Like This: dim cnConnection as ADODB.connection Set cnConnection = Createobject(&quot;ADODB.Connection&quot;) cnConnection.connectionstring = &quot;provider=MSDAORA;data source=NAMEofYourSERVER;user...
  5. Bagadonutz

    COM Ports

    If Using MSComm Control, MSComm.CommPort = 'Whatever'

Part and Inventory Search

Back
Top