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

    what type of constraint is this?

    Thanks for the information. Could you post some SQL code to create the RI constraint? I've seen it done for assocaited a FK to a PK (1-to-1), but I have not seen the constraint code for the scenario that I've described. (I would like to avoid Triggers or Stored Procedures... my preference...
  2. mike2228

    what type of constraint is this?

    Let's say I am building a simple Content Management System (CMS), there would be a table "Article" that contains: id (int, Primary key) title (varchar) content (some large varchar) version (int) guid (unique guid, or even number) When an article is edited, a new record is inserted...
  3. mike2228

    How to make xslt handle custom tag (w/ namespace?)

    I have an xslt that correctly processing : <?xml version="1.0"?> <aaamylist> <aaasomenode>x</aaasomenode> <aaasomenode>y</aaasomenode> <aaasomenode>z</aaasomenode> </aaamylist> BUT, the "real" file of data has colons in the tags, like this: <?xml version="1.0"?>...
  4. mike2228

    can CSS highlight multiple table cells at once?

    Thanks Vacunita, It is almost doing what I need. If I use your concept and make 3 different styles tr:hover td.highlightME{ background-color:red; } tr:hover td.highlightME2{ background-color:blue; } tr:hover td.highlightME3{ background-color:yellow; } And have: <tr> <td...
  5. mike2228

    can CSS highlight multiple table cells at once?

    Hi, (note: I cannot have client-side scripting, like dhtml) I am trying to build an html table that has 10 columns and N number of rows of data. When a mouse hovers over a cell in column 2 and row x, I would like the background of cell(2,x) to change AND the background of cell(5,x) to change...

Part and Inventory Search

Back
Top