webBroker_表格某一行样式
摘要:FDQuery1.First; while not(FDQuery1.Eof) do begin if FDQuery1.Fields.FieldByNumber(1).AsString = Request.QueryFields.Values['aID'] then aHTMLtext.Add('
阅读全文
webBroker_编辑改一条记录_改
摘要:<a target="_blank" href="http://127.0.0.1:8080/deleteBug">删除/编辑一条记录</a> aHTMLtext.Add('<td> ' + '<input type="button" value="编辑" onclick="location.hre
阅读全文
webBroker_删除前确认
摘要:aHTMLtext.Add('<td> <a onclick="return confirm(''确认删除?'')" href ="/deleteBug?DeleteID=' + FDQuery1.Fields.FieldByNumber(1).AsString +'">删除</a> </td> '
阅读全文
webBroker_删除一条记录
摘要:// http://127.0.0.1:8080/deleteBug?DeleteID=2119 删除一条,并显示 所有数据 procedure TWebModule1.WebModule1WebActionItem12Action(Sender: TObject; Request: TWebReq
阅读全文
webBroker增加一条记录到数据库
摘要:通过网盘分享的文件:webBroker_example.rar链接: https://pan.baidu.com/s/1UvYrtq0XCOj-4Wj598roYQ 提取码: fj3w // http://127.0.0.1:8080/InputNewBug 前端输入 procedure TWebM
阅读全文
webBroker中Request所有属性
摘要:procedure TWebModule1.WebModule1DefaultHandlerAction(Sender: TObject; Request: TWebRequest; Response: TWebResponse; var Handled: Boolean); var Page: t
阅读全文
webBroker导入bootstrap最简HTML文件时,提示Line too long at 解决办法
摘要:通过网盘分享的文件:webBroker_bootstrap_simplest.rar链接: https://pan.baidu.com/s/1iEvijLQ82bbLTejhqOYPug 提取码: u3tx Web前端:Bootstrap最强总结 附详细代码 (带常用案例!) 1】用记事本 打 开
阅读全文
webBroker的多行文本 <textarea name="comments"
摘要:<form action="LL" method="post"> <textarea name="comments" placeholder="请输入细节..." rows="4" cols="50"></textarea> <br> <input type="submit" value="提交">
阅读全文
webBroker的<input type="color" name="favcolor"> 颜色 输入
摘要:<form action="MN" method="post"> <input type="color" name="favcolor"> <br> <input type="submit" value="提交"> </form> //MN <input type="color" name="fav
阅读全文
webBroker的<input type="date" name="birthday"> 日期输入
摘要:<form action="ZZ" method="post"> <input type="date" name="birthday"> <br> <input type="submit" value="提交"> </form> ///ZZ <input type="date" name="birt
阅读全文
webBroker的option,类似Delphi的ComboBox1
摘要:<form action="KK" method="post"> <select name="address" id="ida"> <option value="cc">长春</option> <option value="hz">杭州</option> <option value="bj" sel
阅读全文
webBroker的radio的三选 一
摘要:<form action="DJ" method="post"> <input type="radio" name="gender" value="male" checked>男 <input type="radio" name="gender" value="female"> 女 <input t
阅读全文
WebBroker_DataSetPageProducer1_只显示第一条记录
摘要:WebBroker_DataSetPageProducer1_只显示第一条记录 <form action="upload" method="post"> <input type="text" size="30" name="html" > <input type="submit" value="查询
阅读全文
webBroker_DataSetTableProducer1将FDQuery1内容显示出来
摘要:也可以不用DataSetTableProducer,自己将FDQuery1转成HTML文本 webbroker应用——在线成语词典,就是有点麻烦 拖一个DataSetTableProducer1到界面上,假设FDQuery1已正常连接 双击DataSetTableProducer1 改变单元格背景色
阅读全文
WebBroker_PageProducer1_前端_及_结果返回替换
摘要:WebBroker_PageProducer1_结果返回替换, 作用是 在运行时,实时 替换 内容,可以引用 外部HTML,不 重新编译 EXE的情况 下 前端写在 现在,改变about.txt文件 的内容,不重新编译Project.exe. 刷新http://localhost:8080/abou
阅读全文
WebBroker返回到主页_代码
摘要:s:=s+ '<input type="button" name="Submit" value="返回到主页" onclick="location.href=''http://127.0.0.1:8080/''" /> '; <a href ="/">返回主页面</a>
阅读全文
webBroker的checkbox的选择
摘要:https://blog.csdn.net/pcplayer/article/details/69230165 <form action="CK" method="post"> <input type="checkbox" name="CK1" Value="1">跑步 <input type="c
阅读全文
webBroker显示服务上的图片和文本文件
摘要:WebBroker StandAlone 模式下当作一个普通的 WebServer 响应静态网页或其它文件的请求 procedure TWebModule1.WebModule1DefaultHandlerAction(Sender: TObject; Request: TWebRequest; R
阅读全文
一个页面打开另外一个页面Response.SendRedirect('Show');//跳转到 Show页面<a href ="/Show">显示</a>
摘要:一个页面打开另外一个页面Response.SendRedirect('Show');//跳转到 Show页面 <a href ="/Show">显示</a> aHTMLtext.Add('<td> <a onclick="return confirm(''确认删除'+FDQuery1.Fields.
阅读全文