<% If request("action")="modify" Then set rs=server.createobject("adodb.recordset") sql="select * from tproduct where id="&request("id") rs.open sql,conn,1,1 If Not rs.Eof Then Content=rs("tContent") End If Response.Write Content rs.close set rs=nothing End If %>