<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <% dim pagePosition pagePosition="News" ID=trim(request("ID")) Set rs= Server.CreateObject("ADODB.Recordset") sql="select * from [article] where ID="&ID rs.open sql,conn,1,1 if rs.eof and rs.bof then response.Redirect "News.php" else news_title=rs("title") news_content=rs("content") end if rs.close set rs=nothing %> Gemini Sink