%@ LANGUAGE="VBSCRIPT" %> <% id = request.querystring("id") if id = "" then response.redirect "news.asp" end if strSQL = "select * from News where ID=" & id rs.open strSQL, conn if rs.EOF then response.redirect "news.asp" else Name = rs("Name") Description = rs("Description") LastUpdated = rs("LastUpdated") end if rs.close %>
|
|
||||||||||
|
|