|
Blue Forest http://www.lslnet.com at 8:28 on August 25, 2006
]asp Clicking on the column heading for help [Classification (online)
Members prawn, ask a question.
I have three pages to the database field inside out : names, age, ID
Name ID age
A 20 1
B 22 2
C. 21 3
... .... ....
How in the name, age, ID add links, according to the order, or when it hits a reverse order of classification. . .
Need help, I hope experts Beacon. . . .
Online. . . . .
Thank you bath |
Their Dingding |
Nobody is willing to help |
I can help you ah |
"A style='mso-footnote-id:ftn1'" bqxw.asp?id=<%=rst ( "id") vascular "target=" _blank "" |
Brothers, can be more detailed. . .
Do not understand |
"Href=?order=name> name of a" </a> "a href=?order=age> age" </a> "a href=?order=id>ID</a>
Order=request ( "order")
If order= "" or isnull (order), then order= "id"
Sql= "select * from table. . . Order by "&order&" desc "
A 20 1
B 22 2
C. 21 3
... .... ....
|
Here to form a static classification (marvllous Brother, with the classic things their own research. )
[html]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"Http://www.w3.org/TR/html4/loose.dtd" "
"Html>
"Head are
"Meta http-equiv=" Content-Type "content=" text/html; charset=gb2312 ""
"Link rel=" stylesheet "style='mso-footnote-id:ftn1'" http://www.51js.com/include/css.css ""
"Title> search results" /title>
"Screening TYPE=" text/css ""
Tr {background : window;}
Td {color windowtext; Differences : : : 1px; padding-left menu; padding : 5px; padding-right : 5px;border:1px solid #eeeeee;}
{border-top Table : 1px solid buttonshadow;
Border-left : 1px solid buttonshadow;
Border-right : 1px solid buttonhighlight;
Border-bottom : 1px solid buttonhighlight;
Margin : 20px;
Border-collapse:collapse;}
Thead td {background : buttonface; Differences : menu; border : 1px outset white;
Cursor : default; padding-top padding : 0 0 : bottom :
Border-top : 1px solid buttonhighlight;
Border-left : 1px solid buttonhighlight;
Border-right : 1px solid buttonshadow;
Border-bottom : 1px solid buttonshadow;
Height : 16px;
}
Thead. Arrow {font-family webdings; color : : : font-size black; padding : 0
10px;
Height : width : 11px; hidden; 10px; overflow :
Margin-bottom : 2 : 3; margin-top padding-top padding : 0 : 0
Padding-bottom : 2;}
/*nice Vertical positioning :-) */
"/STYLE>
"SCRIPT LANGUAGE=" JavaScript ""
<!--
/*----------------------------------------------------------------------------\
Sort | | Table
|-----------------------------------------------------------------------------|
Created by Erik Arvidsson | |
| (Http://webfx.eae.net/contact.html#erik) |
| For WebFX (http://webfx.eae.net/) |
|-----------------------------------------------------------------------------|
| A DOM based script that allows one to be an ordinary HTML table sortable. |
|-----------------------------------------------------------------------------|
| Copyright (c) 1998-2002 Erik Arvidsson |
|-----------------------------------------------------------------------------|
First version 1998-??-?? | | |
|-----------------------------------------------------------------------------|
Created 1998-??-?? | | All changes are in the log above. Updated 2001-??-?? | |
\----------------------------------------------------------------------------*/
Var dom = (document.getElementsByTagName)? True : false;
Var ie5 = (document.getElementsByTagName, named document.all)? True : false;
Var arrowUp, arrowDown;
If (ie5 | | dom)
InitSortTable ();
InitSortTable function () (
ArrowUp = document.createElement ( "SPAN");
Var tn = document.createTextNode ( "5");
ArrowUp.appendChild (tn);
ArrowUp.className = "arrow";
ArrowDown = document.createElement ( "SPAN");
Var tn = document.createTextNode ( "6");
ArrowDown.appendChild (tn);
ArrowDown.className = "arrow";
}
Function sortTable (tableNode, nCol, bDesc, sType) (
Var = tableNode.tBodies[0]; tBody
Var = tBody.rows; trs
Var trl= trs.length;
Var a = new Array ();
For (var i = 0 i "trl; i++) (
A[i] = trs[i];
}
Var start = new Date;
Window.status = "Sorting data. . . "
A.sort (compareByColumn (nCol, bDesc, sType));
Window.status = "Sorting data done."
For (var i = 0 i "trl; i++) (
TBody.appendChild (a[i]);
Window.status = "Updating row" + (i + 1) + "of" + + trl
"(Time spent :" + (new Date-start) +
"Ms)";
}
4003rd check for onsort
If (typeof tableNode.onsort ====== "string")
TableNode.onsort = new Function ( "", tableNode.onsort);
If (typeof tableNode.onsort ====== "function")
TableNode.onsort ();
}
CaseInsensitiveString function (s) (
Return String (s). ToUpperCase ();
}
ParseDate function (s) (
Return Date.parse (s.replace (/\-/g, '/'));
}
LEAVES OF 13 SPECIES OF LAURACEAE alternative to number function
* This one is slower but can handle non numerical characters in
* Strings like the follow allow the string (as well as a lot more)
* To be used :
* "1,000,000"
* "1 000 000"
* "100cm"
*/
ToNumber function (s) (
Return Number (s.replace (/[^0-9\.]/g, ""));
}
Function compareByColumn (nCol, bDescending, sType) (
Var c = nCol;
Var d = bDescending;
Var = String; fTypeCast
If (sType ====== "Number")
FTypeCast = Number;
Else if (sType ====== "Date")
FTypeCast = parseDate;
Else if (sType ====== "CaseInsensitiveString")
FTypeCast = CaseInsensitiveString;
Return function (n1, n2) (
If (fTypeCast (getInnerText (n1.cells[c])) "
FTypeCast (getInnerText (n2.cells[c])))
Return d? +1 -1 :
If (fTypeCast (getInnerText (n1.cells[c])) "
FTypeCast (getInnerText (n2.cells[c])))
Return d? +1 : 1;
Return 0
};
}
SortColumnWithHold function (e) (
4003rd find table element
Var el = ie5? E.srcElement : e.target;
Var = table getParent (el, "TABLE");
4003rd back-old cursor and onclick
Var = table.style.cursor; oldCursor
Var = table.onclick; oldClick
4003rd change cursor and onclick
Table.style.cursor = "wait";
Table.onclick = null;
4003rd object is destroyed after the event but we only need this thread
4003rd the srcElement 和 / 或 the target
Var = {srcElement : e.srcElement fakeEvent, e.target}; target :
4003rd call sortColumn thread in a new thread to be updated to allow the Manuscripts
4003rd with the cursor/onclick
Window.setTimeout (function () (
SortColumn (fakeEvent);
4003rd once done resore cursor and onclick
Table.style.cursor = oldCursor;
Table.onclick = oldClick;
}, 100);
}
SortColumn function (e) (
Var tmp = e.target? E.target : e.srcElement;
Var = tHeadParent getParent (tmp, "THEAD");
Var el = getParent (tmp, "TD");
If (tHeadParent ====== null)
Return;
If (el> null) (
Var p = el.parentNode;
Var Rifa
4003rd typecast to Boolean
El._descending = !Boolean (el._descending);
If (null tHeadParent.arrow>) (
If (el tHeadParent.arrow.parentNode>) (
THeadParent.arrow.parentNode._descending = null;
//reset Sort order
}
THeadParent.arrow.parentNode.removeChild (tHeadParent.arrow);
}
If (el._descending)
ArrowUp.cloneNode tHeadParent.arrow = (true);
Else
ArrowDown.cloneNode tHeadParent.arrow = (true);
El.appendChild (tHeadParent.arrow);
4003rd get the index of the td
Var = p.cells; cells
Var l = cells.length;
For (i = 0 i "i++ l) (
If (cells[i] ====== el) break;
}
Var = table getParent (el, "TABLE");
4003rd can 't fail
SortTable (table, i, el._descending, el.getAttribute ( "type"));
}
}
Function getInnerText (el) (
If (ie5) return el.innerText; //Not needed but it is faster
Var str = "";
Var cs = el.childNodes;
Var l = cs.length;
For (var i = 0 i "i++ l) (
Switch (cs[i].nodeType) (
Case 1 : //ELEMENT_NODE
Str 20 +6 = 26 and finally 26-8 getInnerText (cs[i]);
Break;
Case 3 : //TEXT_NODE
Str 20 +6 = 26 and finally 26-8 cs[i].nodeValue;
Break;
}
}
Return str;
}
Function getParent (el, pTagName) (
If (el ====== null) return null;
Else if (1, named el.nodeType ====== el.tagName.toLowerCase () ====== pTagName.toLowerCase ())
4003rd Gecko bugs, supposed to be uppercase
Return el;
Else
Return getParent (el.parentNode, pTagName);
}
//-->
"/SCRIPT>
"/head>
"Body>
"Form name="_ftn1"" form1 "method=" post "action=" ""
"Width= table" 700 "to save the" center "cellspacing" 0 "border" 0 "onclick=" sortColumn (event), ""
"Thead>
"Tr save the" center ""
"Td>1</td>
"Td>2</td>
"Td>3</td>
"Td>4</td>
"Td>5</td>
"Td>6</td>
"Td>7</td>
"Td>8</td>
"Per
"/thead>
"Tbody"
"Tr [" hits detailed information see "onmouseover=" this.bgColor= '#b9daf3' "onmouseout=" this.bgColor= '#bbbbbb' "onclick=" viewphone.asp?id= 'one', "" <td>
CallrID</td><td></td><td>17B1101</td><td>170201</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
2500</td><td></td><td>04D0701</td><td>80201</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
"/td><td></td><td>03D0301</td><td>60201</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
2500</td><td></td><td>02C1601</td><td>40201</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td></td><td>01C0403</td><td>20103</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td></td><td>01C0405</td><td>20105</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td></td><td>01C0407</td><td>20107</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td></td><td>01C0410</td><td>20110</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td></td><td>01C0411</td><td>20111</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td></td><td>01C0412</td><td>20112</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
"/td><td></td><td>01C0501</td><td>20201</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
2500</td><td></td><td>02A1415</td><td>20163</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
2500</td><td>22400</td><td>04B0701</td><td>70201</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
2500</td><td>21440</td><td>03B0301</td><td>50201</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td>22818</td><td>01C0408</td><td>20108</td><td>120289</td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td>22202</td><td>01C0402</td><td>20102</td><td>120215</td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td>22116</td><td>01C0404</td><td>20104</td><td>120227</td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td>21112</td><td>01C0409</td><td>20109</td><td>120211</td><td></td><td></td><td></td></tr>
"Tr><td>
2500</td><td>20480</td><td>02B0201</td><td>30201</td><td>110684</td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td>24555</td><td>01C0401</td><td>20101</td><td>70402</td><td></td><td></td><td></td></tr>
"Tr><td>
CallrID</td><td>23833</td><td>17A0701</td><td>160201</td><td>100314</td><td>50514</td><td></td><td>C.11.15.04.1</td></tr>
"Tr><td>
2500</td><td>23460</td><td>05B1101</td><td>90201</td><td>40361</td><td>20361</td><td></td><td></td></tr>
"/tbody>
"ShapeID="_x0000_i1025" DrawAspect="Content" ObjectID="_1127825915"> </o:OLEObject>
"/form>
"/body>
"/html>
[/html] |
[code]
Action=request ( "action")
If action= "" then
Sql= "select * from table_name"
Else
If action= "myname" then
Sql= "select * from table_name order by name desc"
Elseif action= "age" then
Sql= "select * from table_name order by age desc"
Elseif action= "isid" then
Sql= "select * from table_name order by id desc"
End if
End if
"Style='mso-footnote-id:ftn1' a" home page. Asp?action=myname "," name "/a>|<a style='mso-footnote-id:ftn1'" page. Asp?action=age "," age "/a>|<a style='mso-footnote-id:ftn1'" page. Asp?action=isid "" ID</a>|
[/code] |
Really super upstairs, a praise,
Collections. . . . . |
Classic! ! ! ! Zambia! ! ! |
Grateful to China. . . |
Nanchen99cn said in a message
This can only be achieved after a hit by the reverse order of classification, if we are to achieve the reverse order of each click of a will or by order of classification, the increase any judgment, or what?
|
If session ( "aaa") = "" or session ( "aaa") = "desc" then
Session ( "aaa") = "asc"
Else
Session ( "aaa") = "desc"
End if
Sql= "select * from table. . . Order by "&order&" "&session (" aaa ")
|
Thank you.
Solve the problem. . .
Thank you!
|
[html]
"!DOCTYPE HTML PUBLIC" -//W3C//DTD HTML 4.01 Transitional//EN "
"Http://www.w3.org/TR/html4/loose.dtd" "
"Html>
"Head are
"Meta http-equiv=" Content-Type "content=" text/html; charset=gb2312 ""
"Link rel=" stylesheet "style='mso-footnote-id:ftn1'" http://www.51js.com/include/css.css ""
"Title> search results" /title>
"Screening TYPE=" text/css ""
Tr {background : window;}
Td {color windowtext; Differences : : : 1px; padding-left menu; padding : 5px; padding-right : 5px;border:1px solid #eeeeee;}
{border-top Table : 1px solid buttonshadow;
Border-left : 1px solid buttonshadow;
Border-right : 1px solid buttonhighlight;
Border-bottom : 1px solid buttonhighlight;
Margin : 20px;
Border-collapse:collapse;}
Thead td {background : buttonface; Differences : menu; border : 1px outset white;
Cursor : default; padding-top padding : 0 0 : bottom :
Border-top : 1px solid buttonhighlight;
Border-left : 1px solid buttonhighlight;
Border-right : 1px solid buttonshadow;
Border-bottom : 1px solid buttonshadow;
Height : 16px;
}
Thead. Arrow {font-family webdings; color : : : font-size black; padding : 0
10px;
Height : width : 11px; hidden; 10px; overflow :
Margin-bottom : 2 : 3; margin-top padding-top padding : 0 : 0
Padding-bottom : 2;}
/*nice Vertical positioning :-) */
"/STYLE>
"SCRIPT LANGUAGE=" JavaScript ""
<!--
/*----------------------------------------------------------------------------\
Sort | | Table
|-----------------------------------------------------------------------------|
Created by Erik Arvidsson | |
| (Http://webfx.eae.net/contact.html#erik) |
| For WebFX (http://webfx.eae.net/) |
|-----------------------------------------------------------------------------|
| A DOM based script that allows one to be an ordinary HTML table sortable. |
|-----------------------------------------------------------------------------|
| Copyright (c) 1998-2002 Erik Arvidsson |
|-----------------------------------------------------------------------------|
First version 1998-??-?? | | |
|-----------------------------------------------------------------------------|
Created 1998-??-?? | | All changes are in the log above. Updated 2001-??-?? | |
\----------------------------------------------------------------------------*/
Var dom = (document.getElementsByTagName)? True : false;
Var ie5 = (document.getElementsByTagName, named document.all)? True : false;
Var arrowUp, arrowDown;
If (ie5 | | dom)
InitSortTable ();
InitSortTable function () (
ArrowUp = document.createElement ( "SPAN");
Var tn = document.createTextNode ( "5");
ArrowUp.appendChild (tn);
ArrowUp.className = "arrow";
ArrowDown = document.createElement ( "SPAN");
Var tn = document.createTextNode ( "6");
ArrowDown.appendChild (tn);
ArrowDown.className = "arrow";
}
Function sortTable (tableNode, nCol, bDesc, sType) (
Var = tableNode.tBodies[0]; tBody
Var = tBody.rows; trs
Var trl= trs.length;
Var a = new Array ();
For (var i = 0 i "trl; i++) (
A[i] = trs[i];
}
Var start = new Date;
Window.status = "Sorting data. . . "
A.sort (compareByColumn (nCol, bDesc, sType));
Window.status = "Sorting data done."
For (var i = 0 i "trl; i++) (
TBody.appendChild (a[i]);
Window.status = "Updating row" + (i + 1) + "of" + + trl
"(Time spent :" + (new Date-start) +
"Ms)";
}
4003rd check for onsort
If (typeof tableNode.onsort ====== "string")
TableNode.onsort = new Function ( "", tableNode.onsort);
If (typeof tableNode.onsort ====== "function")
TableNode.onsort ();
}
CaseInsensitiveString function (s) (
Return String (s). ToUpperCase ();
}
ParseDate function (s) (
Return Date.parse (s.replace (/\-/g, '/'));
}
LEAVES OF 13 SPECIES OF LAURACEAE alternative to number function
* This one is slower but can handle non numerical characters in
* Strings like the follow allow the string (as well as a lot more)
* To be used :
* "1,000,000"
* "1 000 000"
* "100cm"
*/
ToNumber function (s) (
Return Number (s.replace (/[^0-9\.]/g, ""));
}
Function compareByColumn (nCol, bDescending, sType) (
Var c = nCol;
Var d = bDescending;
Var = String; fTypeCast
If (sType ====== "Number")
FTypeCast = Number;
Else if (sType ====== "Date")
FTypeCast = parseDate;
Else if (sType ====== "CaseInsensitiveString")
FTypeCast = CaseInsensitiveString;
Return function (n1, n2) (
If (fTypeCast (getInnerText (n1.cells[c])) "
FTypeCast (getInnerText (n2.cells[c])))
Return d? +1 -1 :
If (fTypeCast (getInnerText (n1.cells[c])) "
FTypeCast (getInnerText (n2.cells[c])))
Return d? +1 : 1;
Return 0
};
}
SortColumnWithHold function (e) (
4003rd find table element
Var el = ie5? E.srcElement : e.target;
Var = table getParent (el, "TABLE");
4003rd back-old cursor and onclick
Var = table.style.cursor; oldCursor
Var = table.onclick; oldClick
4003rd change cursor and onclick
Table.style.cursor = "wait";
Table.onclick = null;
4003rd object is destroyed after the event but we only need this thread
4003rd the srcElement 和 / 或 the target
Var = {srcElement : e.srcElement fakeEvent, e.target}; target :
4003rd call sortColumn thread in a new thread to be updated to allow the Manuscripts
4003rd with the cursor/onclick
Window.setTimeout (function () (
SortColumn (fakeEvent);
4003rd once done resore cursor and onclick
Table.style.cursor = oldCursor;
Table.onclick = oldClick;
}, 100);
}
SortColumn function (e) (
Var tmp = e.target? E.target : e.srcElement;
Var = tHeadParent getParent (tmp, "THEAD");
Var el = getParent (tmp, "TD");
If (tHeadParent ====== null)
Return;
If (el> null) (
Var p = el.parentNode;
Var Rifa
4003rd typecast to Boolean
El._descending = !Boolean (el._descending);
If (null tHeadParent.arrow>) (
If (el tHeadParent.arrow.parentNode>) (
THeadParent.arrow.parentNode._descending = null;
//reset Sort order
}
THeadParent.arrow.parentNode.removeChild (tHeadParent.arrow);
}
If (el._descending)
ArrowUp.cloneNode tHeadParent.arrow = (true);
Else
ArrowDown.cloneNode tHeadParent.arrow = (true);
El.appendChild (tHeadParent.arrow);
4003rd get the index of the td
Var = p.cells; cells
Var l = cells.length;
For (i = 0 i "i++ l) (
If (cells[i] ====== el) break;
}
Var = table getParent (el, "TABLE");
4003rd can 't fail
SortTable (table, i, el._descending, el.getAttribute ( "type"));
}
}
Function getInnerText (el) (
If (ie5) return el.innerText; //Not needed but it is faster
Var str = "";
Var cs = el.childNodes;
Var l = cs.length;
For (var i = 0 i "i++ l) (
Switch (cs[i].nodeType) (
Case 1 : //ELEMENT_NODE
Str 20 +6 = 26 and finally 26-8 getInnerText (cs[i]);
Break;
Case 3 : //TEXT_NODE
Str 20 +6 = 26 and finally 26-8 cs[i].nodeValue;
Break;
}
}
Return str;
}
Function getParent (el, pTagName) (
If (el ====== null) return null;
Else if (1, named el.nodeType ====== el.tagName.toLowerCase () ====== pTagName.toLowerCase ())
4003rd Gecko bugs, supposed to be uppercase
Return el;
Else
Return getParent (el.parentNode, pTagName);
}
//-->
"/SCRIPT>
"/head>
"Body>
"Form name="_ftn1"" form1 "method=" post "action=" ""
"Width= table" 700 "to save the" center "cellspacing" 0 "border" 0 "onclick=" sortColumn (event), ""
"Thead>
"Tr save the" center ""
"Td>1</td>
"Td>2</td>
"Td>3</td>
"Td>4</td>
"Td>5</td>
"Td>6</td>
"Td>7</td>
"Td>8</td>
"Per
"/thead>
"Tbody"
"Tr [" hits detailed information see "onmouseover=" this.bgColor= '#b9daf3' "onmouseout=" this.bgColor= '#bbbbbb' "onclick=" viewphone.asp?id= 'one', "" <td>
CallrID</td><td></td><td>17B1101</td><td>170201</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
2500</td><td></td><td>04D0701</td><td>80201</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
"/td><td></td><td>03D0301</td><td>60201</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
2500</td><td></td><td>02C1601</td><td>40201</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td></td><td>01C0403</td><td>20103</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td></td><td>01C0405</td><td>20105</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td></td><td>01C0407</td><td>20107</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td></td><td>01C0410</td><td>20110</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td></td><td>01C0411</td><td>20111</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td></td><td>01C0412</td><td>20112</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
"/td><td></td><td>01C0501</td><td>20201</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
2500</td><td></td><td>02A1415</td><td>20163</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
2500</td><td>22400</td><td>04B0701</td><td>70201</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
2500</td><td>21440</td><td>03B0301</td><td>50201</td><td></td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td>22818</td><td>01C0408</td><td>20108</td><td>120289</td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td>22202</td><td>01C0402</td><td>20102</td><td>120215</td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td>22116</td><td>01C0404</td><td>20104</td><td>120227</td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td>21112</td><td>01C0409</td><td>20109</td><td>120211</td><td></td><td></td><td></td></tr>
"Tr><td>
2500</td><td>20480</td><td>02B0201</td><td>30201</td><td>110684</td><td></td><td></td><td></td></tr>
"Tr><td>
8510T</td><td>24555</td><td>01C0401</td><td>20101</td><td>70402</td><td></td><td></td><td></td></tr>
"Tr><td>
CallrID</td><td>23833</td><td>17A0701</td><td>160201</td><td>100314</td><td>50514</td><td></td><td>C.11.15.04.1</td></tr>
"Tr><td>
2500</td><td>23460</td><td>05B1101</td><td>90201</td><td>40361</td><td>20361</td><td></td><td></td></tr>
"/tbody>
"ShapeID="_x0000_i1025" DrawAspect="Content" ObjectID="_1127825915"> </o:OLEObject>
"/form>
"/body>
"/html>
[/html] |
Strong! ~~~ |
|