28,409
社区成员




<%
Dim content, fso, file
content = "<table border=""1"" cellpadding=""2"" cellspacing=""0"" bordercolor=""#cccccc"" style=""border-collapse: collapse;"">"
content = content & vbCrlf & "<tr>"
content = content & vbCrlf & "<td>1</td>"
content = content & vbCrlf & "<td>CB1SK-001</td>"
content = content & vbCrlf & "<td>LH-001</td>"
content = content & vbCrlf & "<td>2</td>"
content = content & vbCrlf & "<td>40-305469-1111</td>"
content = content & vbCrlf & "<td>Assy FPC,Keyboard,W/Keypad,CR1CC,V1T1,ROHS</td>"
content = content & vbCrlf & "<td>1</td>"
content = content & vbCrlf & "<td>LongWei</td>"
content = content & vbCrlf & "<td></td>"
content = content & vbCrlf & "<td>MD</td>"
content = content & vbCrlf & "<td>LH</td>"
content = content & vbCrlf & "</tr>"
content = content & vbCrlf & "</table>"
Set fso = Server.CreateObject("Scripting.FileSystemObject")
Set file = fso.CreateTextFile(Server.MapPath("xxx.xls"))
file.Write content
file.Close
Set file = Nothing
Set fso = Nothing
%>