问题描述
代码如下:<%@pagelanguage="java"import="java.lang.*,java.io.*,java.sql.*,java.util.*"contentType="textml"pageEncoding="gb2312"%><html><body><%Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();Stringurl="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=pubs";//pubs 为用户的数据库Stringuser="sa";Stringpassword="";Connectionconn=DriverManager.getConnection(url,user,password);Statementstmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);%></body></html>在IE打开后跳出这样的对话框:
解决方案
解决方案二:
你用的什么服务器啊?tomcat吗?检查下web.xml
解决方案三:
在tomcat的的web.xml中,是不是把jsp做为下载格式了?
解决方案四:
引用2楼weipj001的回复:
在tomcat的的web.xml中,是不是把jsp做为下载格式了?
是啊,检查web.xml里面的mime-mapping
时间: 2024-12-24 13:56:10