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

    <input box>

    You could replace any occurances of the " or ' using the replace command. var1=Replace(var1, "'", "") Or you could split the variable if the quotes are only at the beginning and end so that you could put them back when you are done. Those are just a couple of possible...
  2. clofton

    ASP Oracle connection

    <% Dim DBAliasName, myConnectionName DBAliasName = &quot;Provider=MSDAORA;Persist Security Info=False;Data Source=databasePhysicalName;User ID=ThisIsMyUserID;Password=ThisIsMyPassword&quot; Set myConnectionName = Server.CreateObject(&quot;ADODB.Connection&quot;) myConnectionName.Open DBAliasName...

Part and Inventory Search

Back
Top