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 gkittelson 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. johndayo

    Logging MySQL database on UNIX server

    Hi I currently have the following command running as default which creates a log file for all dbs: /server_path/safe_mysql --log-bin --user=mysql & The file this produces is the default "hostname-bin.###" I want this command to create a log file for a particular database (not all)...
  2. johndayo

    redirect to parent with frames

    If i understand correctly, use this ... <a href=&quot;parent_page.html&quot; target=&quot;_top&quot;>Parent Page</a> This will go to the page breaking out of the frameset. Cheers Dayo
  3. johndayo

    How do you return to previous page in frames

    Use the &quot;_top&quot; value of the target attribute to break out of the frameset ... <a href=&quot;previous_page.html&quot; target=&quot;_top&quot;>Previous Page</a>
  4. johndayo

    XSLT and special characters

    Thanks, that's worked perfectly ....
  5. johndayo

    3 tables next to each other

    You seem to have various closing tags missing ... this can be done 2 ways with your 3 tables 1: Using 1 table with 3 cells next to each other <table width=&quot;100%&quot;> <tr> <td width=&quot;40%&quot;>Content</td> <td width=&quot;40%&quot;>Content</td> <td width=&quot;20%&quot;>Content</td>...
  6. johndayo

    Tables

    Your don't need to have the table aligned left, it's left by default, and anyway if you want to align a table left in another table use <td align=&quot;left&quot;> in the parent table instead of <table align=&quot;left&quot;> in the child table. You can then have <br> or <p> after it and it...
  7. johndayo

    XSLT and special characters

    Hi Does anyone one know if XSLT code likes special characters, for example an &eacute; for a french e acute character. When i test my xslt code with that special character in, it interprets the special character then complains that &quot;an invalid character found in the text content&quot...
  8. johndayo

    Cannot connect to Database

    Yep or MyConn.Open strConn
  9. johndayo

    Cannot connect to Database

    Application(&quot;ConnectionString&quot;) = &quot;Provider=SQLOLEDB.1;Password=password;&quot; & _ &quot;Persist Security Info=True;User ID=UserID;&quot; & _ &quot;Initial Catalog=db_name;Data Source=server_name&quot;
  10. johndayo

    Cannot connect to Database

    Can anyone help me. I'm having trouble connecting to my database (SQL Server), and receive the error shown below. I'm connecting to the db using a connection string which is set in the global.asa file. All the parameters for the connection are correct. Any possible solutions are welcomed even...
  11. johndayo

    The XSL namespace soesn't work

    Hi I have an xml file and an xsl file, and am creating the transformation on the server using ASP. My problem is that even though there is nothing wrong with the asp code, the xml file and the xsl file, when browsed the page loads the resulting html without the data called in by the xsl...

Part and Inventory Search

Back
Top