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

📄 add_news_ok.asp

📁 具有计划、任务、通告、公文、员工档案、等网络办公功能
💻 ASP
字号:
<%@language="VBscript"%>
<%Response.Expires=0%>
<!--#include file="../include/checkadmin.asp"-->
<!--#include file="../include/upload.asp"-->
<!--#include file="../include/conn.asp"-->
<%
dim upload,file,sfilename,bfilename,formName,sPath,bPath,iCount
set upload=new upload_5xSoft ''建立上传对象

imgpath="../newsimgages/"	'图片路径
ver="cn"

action = upload.form("action") '编辑类型
if action = "addnew" then
	columnid = upload.form("columnid")
	title = replace(upload.form("title"),"'","''")
	content = replace(upload.form("content"),"'","''")
	index = upload.form("index")
	if index<>"1" then index="0"
	important = upload.form("important")
	if important<>"1" then important="0"

	conn.execute "insert into tbl_news(columnid,title,index,important,content) values("&columnid&",'"&title&"','"&index&"','"&important&"','"&content&"')"
	set rs=conn.execute("select top 1 id from tbl_news order by id desc")
	if not rs.eof then
		id=rs("id")
	end if
	set rs=nothing
	'上传图片
	set file=upload.file("imgname")
	if file.FileSize>0 then
		imgname=ver & "_" & id & right(file.FileName,4)
		file.SaveAs Server.mappath(imgpath&imgname)
		imgposition = upload.form("imgposition")
		imgurl = upload.form("imgurl")
		conn.execute "update tbl_news set imgname='"&imgname&"',imgposition='"&imgposition&"',imgurl='"&imgurl&"' where id="&id
	end if
	set file=nothing
end if
%>

<style>
	td{font-size:13px;}
</style>
<table border="0" cellspacing="1" width="600" bgcolor="#D6DFF7">
  <tr>
    <td height="23"><img src="images/spacer.gif" width="10" height="1"><font style="font-size:13px;" color="#215DC6"><b>增加新闻</b></font></td>
  </tr>
  <tr>
    <td height="23" bgcolor="#FFFFFF">
	<br><br>
	<p align="center">增加成功,是否继续增加新闻?</p>
	<p align="center">
	<input type="button" name="btnOk" value="是" style="width:60px;" onclick="javascript:location.href='add_news.asp';">
	<input type="button" name="btnCancel" value="否" style="width:60px;" onclick="javascript:location.href='list_news.asp';">
	</p>
	<br>
	</td>
  </tr>
  <tr>
    <td height="23" colspan="2" align="center"></td>
  </tr>
</table>

⌨️ 快捷键说明

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