Søg og Erstat
Hej,Jeg har følgende output i HMTL fra et system jeg desværre ikke kan ændre på:
[quote]
<html>
<head>
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
<title>Title</title>
<link rel=Stylesheet href="Style.css">
</head>
<body>
<table width="100%">
<tr class="head">
<th width="160">Name</th>
<th width="140">State</th>
</tr>
<tr class="c"><td colspan="4"><strong>Overskrift 1</strong></td></tr><tr class="%Class%">
<td width="160">Username 1</td>
<td>(Ind) at 06:43:39</td>
</tr>
<tr class="c"><td colspan="4"><strong>Overskrift 2</strong></td></tr><tr class="%Class%">
<td width="160">Username 2</td>
<td>(Ud) at 15:43:46</td>
</tr>
<tr class="c"><td colspan="4"><strong>Overskrift 3</strong></td></tr><tr class="%Class%">
<td width="160">Username 3</td>
<td>(Ud) at 14:00:21</td>
</tr>
</table>
<br>
Weekday, Date & Time
</body>
</html>
[/quote]
Jeg ville gerne have det til at se ud som:
<html>
<head>
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
<title>Title</title>
<link rel=Stylesheet href="Style.css">
</head>
<body>
<table width="100%">
<tr class="head">
<th width="160">Name</th>
<th width="140">State</th>
</tr>
<tr class="c"><td colspan="4"><strong>Overskrift 1</strong></td></tr><tr class="%Class%">
<td width="160">Username 1</td>
<td><b>(In)<b/> at 06:43:39</td>
</tr>
<tr class="c"><td colspan="4"><strong>Overskrift 2</strong></td></tr><tr class="%Class%">
<td width="160">Username 2</td>
<td>(Out) at 15:43:46</td>
</tr>
<tr class="c"><td colspan="4"><strong>Overskrift 3</strong></td></tr><tr class="%Class%">
<td width="160">Username 3</td>
<td>(Out) at 14:00:21</td>
</tr>
</table>
<br>
Weekday, Date & Time
</body>
</html>
Jeg har aldrig rodet med .NET før og synes det er noget rod at skulle installere fx. PHP på en IIS7. Så hvis du har lyst ser jeg gerne frem til lidt hjælp.
/Leif