Can somebody explain how this asp code works?
问题 I wanted to echo some data from a table in my database and found this code: set rs = Server.CreateObject("ADODB.recordset") rs.Open "Select name From users", conn do until rs.EOF for each x in rs.Fields Response.Write(x.value) next rs.MoveNext loop rs.close I tested it and and it worked but I have no clue what all that syntax means and there is no explanation provided with the code. Can someone with experience help me out? 回答1: rs is a recordset, which means a result of a database query. The