Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在修改我朋友在 vb.net 中的铁路预订项目。我是 vb.net 的新手。有一页railwayreservation.aspx用于登记乘客。单击注册按钮后,数据会从 vb 页面添加到数据库文件中。
我想在一个简单的 html 文件中输出这些数据。我创建了新的 html 文件。数据添加到数据库后,如何在 html 文件中显示数据?aspx.vb 页面上有许多数据变量暗淡名称、日期等。
您可以将文本从关联的 aspx.vb 文件动态添加到 .aspx 文件。在 html 中,添加类似 adiv的内容,id其中包含您希望显示预订的位置:
div
id
<div id="reservationDiv"></div>
在 .aspx.vb 中,您可以使用以下内容来更新 aspx 文件:
reservationDiv.InnerHtml = Name & "<br>" ...
这将导致文本神奇地插入到 id 为“reservationDiv”的 div(或其他容器)中。
(还有其他几种方法可以实现这一点。)