<%@ page language="java" import="java.util.*,java.sql.*,com.jbit.entity.*,com.jbit.dao.impl.*" pageEncoding="UTF-8"%>
<html>
<head>
<title>登陆处理页面</title>
</head>
<body>
<%
//获取用户账号密码
String name = request.getParameter("username");
String pwd = request.getParameter("pwd");
//创建实现类对象
NewsDaoImpl ndi = new NewsDaoImpl();
//接受查询返回的news的集合
List<News> news = ndi.selectAll();
%>
<table border="1">
<tr>
<td>新闻名称</td>
<td>新闻内容</td>
</tr>
<%for(News n:news){%>
<tr>
<td><%=n.getNtitle() %></td>
<td><%=n.getNauthor() %></td>
</tr>
<%}%>
</table>
</body>
</html>
我想动态添加表格 从数据库读取 但是读取的数据没有显示
别人的电脑效果可以出来 我电脑源代码运行却没有效果 数据库没有问题
在别人电脑可以出来你要看看自己的浏览器问题了
代码没有问题 就是连接不上数据库 提示tcp/ip连接主机失败 但是tcp/ip已启用