信息安全解决方案

来源:百度知道 编辑:UC知道 时间:2024/06/11 02:30:59
跪求信息安全解决方案
越多越好....

方案二 利用数据库技术

1、DTS服务

2、SQL操作
Select * from 工资表 where 姓名 like '2%'

3、基于B/S模式
1)
C1.jsp: 界面文件只要改一个
<%@ page contentType="text/html;charset=GB2312" %>
...
<BR> <FORM action="c2.jsp" method=post name=form>
<INPUT type="text" name="name" value="王">
<BR> <Input type=submit name="g" value="提交">
</Form>
</BODY>
</HTML>

C2.jsp: 功能文件改N个
<%@ page contentType="text/html;charset=GB2312" %>
<%@ page import="java.sql.*" %>
...
try{ con=DriverManager.getConnection( "jdbc:odbc:stu","sa","");
sql=con.createStatement();
String condition="SELECT * FROM 工资表 where 姓名 like ‘2%’" ;

2)
Example5_8.jsp:
<%@ page contentType