<% root="../" id = request("id") if request.form = "" then if id <> "" then 'Get existing data sqltext = "SELECT * FROM Links WHERE id = " & id rs.open sqltext,conn,2,2 if not rs.bof then Title = trim(rs("Title")) url = trim(rs("url")) CategoryId = rs("CategoryId") * 1 end if rs.close end if 'Build Category List sqltext = "SELECT * FROM LinkCategories ORDER BY CatName" rs.open sqltext,conn,2,2 if not rs.bof then Do While not rs.eof if CategoryId = rs("id") * 1 then selected = " selected" else selected = "" end if CatList = CatList & "