⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 do_update_m.jsp

📁 饲料公司销售管理系统是基于建立完善的饲料公司销售方面管理控制模型的基础上
💻 JSP
字号:
<html>
<%@ page import="java.sql.*"%>
<%@ page contentType="text/html;charset=gb2312"%>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>修改客户信息</title>
</head>
<jsp:useBean id="db" scope="page" class="sale.dbBean" />
<body>
<p align="center"><font size="7" color="#000080">销售管理信息系统</font></p>
<hr>
<%
String id=new String();
id=(String)session.getAttribute("id");

if(id==null)
	{
		response.sendRedirect("index.htm");
	}
%>
<%
String m_id=new String(request.getParameter("m_id"));
String date=new String(request.getParameter("date"));
String d_id=new String(request.getParameter("d_id"));
String arr=new String(request.getParameter("arr"));
String money=new String(request.getParameter("money"));
String cuid=new String(request.getParameter("cuid"));
String sql="update money set did='"+d_id+"',date1='"+date+"',arr='"+arr+"',money1='"+money+"',cuid='"+cuid+"' where id='"+m_id+"'";
db.executeInsert(sql);	
%>	
<p align="center">您已经成功修改回款信息!</p>
<div align="center">
<table border="0" width="60%">
				 	<table border="0" width="60%">
							<table border="0" width="60%">
							  <tr>
			    <td width="50%">
			      <p align="center">回款编号</td>
			    <td width="50%">
			    <%=m_id%>
			    </td>
			  </tr>
			
			  <tr>
			    <td width="50%">
			      <p align="center">回款金额</td>
			    <td width="50%">
			    <%=money%>
			    </td>
			  </tr>
			<tr>
	<td width="50%">
			      <p align="center">总欠款</td>
			    <td width="50%">
			    <%=arr%>
			    </td>
			   </tr>
			  <tr>
	<td width="50%">
			      <p align="center">回款日期</td>
			    <td width="50%">
			    <%=date%>
			    </td>
			   </tr>
			    <tr>
	<td width="50%">
	   <p align="center">片区编号</td>
	    <td width="50%">
			<%=d_id%>
			 </td>
			</tr>
		<tr>
	    <td width="50%">
			      <p align="center">客户编号</td>
			    <td width="50%">
			    <%=cuid%>
			    </td>
			   </tr>
			 </table>
			 </div>
			<form method="POST" action="money.jsp">
			<p align="center">
			<input type="submit" value="返回">
			</form>



</body>

</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -