Hi John
THanks again. I am running my JSPs using JBoss (with the Tomcat add-on).
I edited the "C:\<JBossroot>\bin\run.bat" file and inserted into the second line:
"set CLASSPATH=c:\mssql_jdbc_driver\lib\mbase.jar;c:\mssql_jdbc_driver\lib\msutil.jar;c:\mssql_jdbc_driver\lib\mssqlserver.jar;"
where C:\mssql_jdbc_driver is the folder where my *.jar files are located.
This is what my .jsp page looks like:
-----Start test.jsp -----------
<%
try {
String sDBDriver = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
String sConnStr = "jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=multiplex;User=sa;Password=secret;";
Class.forName(sDBDriver);
java.sql.Connection conn = java.sql.DriverManager.getConnection(sConnStr);
java.sql.Statement stmt = conn.createStatement();
java.sql.ResultSet rs = stmt.executeQuery("select 'Multiplex' As Name"

;
while (rs.next()) { %>
<%= rs.getString("Name"

%><br>
<%}
}
catch (ClassNotFoundException cnfe)
{
System.err.println("Unable to load MSSQL database driver!"

;
System.err.println("ClassNotFoundException: " + cnfe.getMessage());
}
%>
------End test.jsp -----------------------
But then when I run test.jsp, I get a ClassNotFoundException saying its not able to load the MSSQL driver.
Thanks for the help!