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

📄 linkupdate.jsp~1~

📁 明日新闻网络中心是由吉林省明日科技有限公司开发的一个信息管理系统
💻 JSP~1~
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="java.util.List"%>
<%@ page import="java.sql.*"%>
<%@ page import="com.victor.domain.LinkActionForm"%>
<html>
<head>
<title>插入链接</title>

</head>
<script language="JavaScript">
function RgTest(){
if(document.form.linkPicture.value==""){
window.alert("请输入图片地址:");
document.form.linkPicture.focus();
return false;
}

if(document.form.linkName.value==""){
window.alert("链接的图片信息:");
document.form.linkName.focus();
return false;
}

if(document.form.linkAddress.value==""){
window.alert("链接的地址:");
document.form.linkAddress.focus();
return false;
}

return true;
}
</script>
<%List list=(List)request.getAttribute("list")%>
<body bgcolor="#ffffc0">
<div align="center" >插入链接
</div>
<form action="../../../lInkInsertAction.do"  onSubmit="return RgTest()" method="post"  name="form">
  <div align="center">  </div>
  <table width="430" border="3" align="center" cellpadding="3" cellspacing="3">
    <tr>
      <td width="94">链接的图片</td>
      <td width="305"><input type="file" name="linkPicture"></td>
    </tr>
    <tr>
      <td>链接的图片信息</td>
      <td><input type="text" name="linkName"></td>
    </tr>
    <tr>
      <td>链接的地址</td>
      <td><input type="text" name="linkAddress"></td>
    </tr>
  </table>
  <div align="center">
    <input type="submit" name="Submit" value="提交">
	&nbsp;&nbsp;&nbsp;&nbsp;
    <input type="reset" name="Submit2" value="重置">
  </div>
</form>
<h1>&nbsp;</h1>
</body>
</html>

⌨️ 快捷键说明

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