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: *

  1. lahatte

    Grab Bag 'O questions- Connections, Photos and more

    I suppose you might want to add this https:// option also... If (Left(ws, 4) <> &quot;http&quot;) and (Left(ws, 5) <> &quot;https&quot;) and (Left(ws, 3) <> &quot;ftp&quot;) and (Left(ws, 4) <> &quot;nntp&quot;) Then ...
  2. lahatte

    Grab Bag 'O questions- Connections, Photos and more

    Here is some code I use in an ASP page that retrieves a URL from a database. I made it based on what had been entered as a web link into the database. The entries were not always the same, so my code makes them all the same, with http:// on the beginning. <% ' Set up the hyperlink data...
  3. lahatte

    Passing string to asp page to be placed as ORDER BY column in SELECT

    A mistake, you will need a space in the last part... s-sql = &quot;SELECT * FROM co_table ORDER BY &quot; & co_ID & &quot; DESC&quot; Clay.
  4. lahatte

    Passing string to asp page to be placed as ORDER BY column in SELECT

    Try this, and do away with the frontpage stuff: co_ID = request.querystring(&quot;co_ID&quot;) s-sql = &quot;SELECT * FROM co_table ORDER BY &quot; & co_ID You could also append the sort order to the end if you wish (DESC or ASC): s-sql = &quot;SELECT * FROM co_table ORDER BY &quot; & co_ID...

Part and Inventory Search

Back
Top