asp help!!

Out of context: Reply #1

  • Started
  • Last post
  • 3 Responses
  • trebor0

    You will need the id from the entry then you du an rs.Update on that post.

    ex (ingore the swedish colum names)

    sql = "select * from musik where id = "&Request.QueryString("id")&" "
    rs.Open sql, connect, adOpenStatic, adLockOptimistic

    rs("laten") = Request.Form("laten")
    rs("url_laten") = Request.Form("url_laten")
    rs("url") = Request.Form("url")
    rs("bild") = Request.Form("bild")
    rs("grupp_namn") = Request.Form("grupp_namn")
    rs("beskrivning") = Request.Form("beskrivning")
    rs.Update
    rs.Close

View thread