// http://127.0.0.1:8080/deleteBug?DeleteID=2119 删除一条,并显示 所有数据 procedure TWebModule1.WebModule1WebActionItem12Action(Sender: TObject; Request: TWebRequest; Response: TWebResponse; var Handled: Boolean); var S: string; aHTMLtext: TStringList; j:integer; begin s:= Request.QueryFields.Values['DeleteID']; if trim(s)<> '' then begin FDQuery1.SQL.Text:='delete from bugtb where BugID = ' + s ; FDQuery1.ExecSQL; end; FDQuery1.Open('select * from bugtb ' ); //参数为空,返回所有记录 //============================================================================== aHTMLtext := TstringList.Create; aHTMLtext.Add('<style> table{margin:0 auto;border:1px solid #000000;border-collapse:collapse;}th,td{border: 1px solid #000000;text-align:center;}' // 画 实细线 +'th {background-color: #007bff; color: #fff; font-weight: bold; text-align: center; padding: 10px; } </style>' ); //表头 样式 aHTMLtext.Add(' <table border="1"; width=1000px; > ' ); aHTMLtext.Add(' <tr > '); for j := 1 to FDQuery1.FieldCount do begin aHTMLtext.Add('<th>'); aHTMLtext.Add(FDQuery1.Fields.FieldByNumber(j).FieldName); // 列 名 aHTMLtext.Add('</th>'); end; aHTMLtext.Add('<th>操作栏</th>'); aHTMLtext.Add(' </tr> '); FDQuery1.First; while not(FDQuery1.Eof) do begin aHTMLtext.Add(' <tr > '); for j := 1 to FDQuery1.FieldCount do begin aHTMLtext.Add('<td>'); aHTMLtext.Add(FDQuery1.Fields.FieldByNumber(j).AsString); // 所有 值 aHTMLtext.Add('</td>'); end; aHTMLtext.Add('<td> <a onclick="return confirm(''确认删除?'')" href ="/deleteBug?DeleteID='+ FDQuery1.Fields.FieldByNumber(1).AsString +'">删除</a> </td> '); aHTMLtext.Add(' </tr> '); FDQuery1.Next; end; aHTMLtext.Add('</table> '); S:= aHTMLtext.Text; aHTMLtext.Free ; //-------------------------------------------------------------------------- s:='<input type="button" name="Submit" value="返回到主页" onclick="location.href=''http://127.0.0.1:8080/''" /> ' + s; Response.ContentType := 'text/html; charset="UTF-8"'; Response.Content := S; Handled := True; end;
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· 上周热点回顾(3.3-3.9)
· winform 绘制太阳,地球,月球 运作规律
2023-02-15 uniGUI学习之随机验证码生成及判断(59)
2017-02-15 Delphi 7拦截滚轮事件不响应滚轮的上下滚动
2010-02-15 Delphi2010数字移动游戏