|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
editing into table from file
hello,
I'm printing part of a table from one asp page to another using Server.CreateObject. the table is like so (simplified) <table><tr> <td bgcolor="red" colspan="5">some number</td> </tr><tr> <td bgcolor="#c0c0c0">Figura</b></td> <td bgcolor="#c0c0c0" colspan="2">Referencia</td> <td bgcolor="#c0c0c0">Descripción</td> <td bgcolor="#c0c0c0">Ctd.</td> </tr> <!-- this 3rd row below repeats many time with different values -> <tr> <td bgcolor="#E1E1E1">some value</td> <td bgcolor="#E1E1E1">some value</td> <td bgcolor="#E1E1E1">some value</td> <td bgcolor="#E1E1E1">some value</td> </tr> When the script prints out the table from the previous page i need 2 more columns added so now the table would look like so (changes in bold): <table><tr> <td bgcolor="red" colspan="7">some number</td> </tr><tr> <td bgcolor="#c0c0c0">Figura</b></td> <td bgcolor="#c0c0c0" colspan="2">Referencia</td> <td bgcolor="#c0c0c0">Descripción</td> <td bgcolor="#c0c0c0">Ctd.</td> <td bgcolor="#c0c0c0">1st extra field</td> <td bgcolor="#c0c0c0">2nd extra field</td> </tr> <!-- this 3rd row below repeats many time with different values -> <tr> <td bgcolor="#E1E1E1">some value</td> <td bgcolor="#E1E1E1">some value</td> <td bgcolor="#E1E1E1">some value</td> <td bgcolor="#E1E1E1">some value</td> <td bgcolor="#E1E1E1">blank</td> <td bgcolor="#E1E1E1">blank</td> </tr> ------------------------- I have this code, it prints out the table ok, but the problem is sticking in the extra cells.. ------------------------ PHP Code:
any suggestions would be highly appreciated ![]() Last edited by buckenmeyer : February 9th, 2004 at 02:51 PM. |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > ASP Programming > editing into table from file |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|