<%
name=request("name")
sn=request("sn")
system=request("system")
kind=request("kind")
about="略"
link=request("link")
data=date()
if sn="" then sn="none" end if
%>
<%
if name<>"" and system<>"" and kind<>"" and link<>"" then
set tool=server.createobject("adodb.recordset")
tool.ActiveConnection=datalink
tool.CursorType = 1
tool.CursorLocation = 2
tool.LockType = 3
tool.source="select * from tool"
tool.open()
tool.addnew
tool("name")=name
tool("sn")=sn
tool("system")=system
tool("kind")=kind
tool("about")=about
tool("link")=link
tool("data")=data
tool.Update
tool.close()
%>