www.gusucode.com > 共享世纪内容管理系统 2.1 build 080704 全站开源版 > admin/JSModifyPic.asp

    <%Admin="InfoJS"%>
<!--#include file="check.asp"-->
<!--#include file="mdb_path_info.asp"-->
<!--#include file = JSDelSave.asp-->
<%
'==========================================
'
'  晓宇听幽新闻文章管理系统 2004
'
'  主页地址:http://www.xoYu.com
'
'==========================================
'程序名称:晓宇听幽新闻文章管理系统
'英文名称:xoYu News 2004 Professional
'程序创建时间:2003-7-10
'程序完成时间:2003-9-11
'最后修改时间:2003-10-10
'==========================================
  if request.form("action")="Modify" then
    conn.execute("update JSFile set PhotoPath='"&request.form("PhotoPath")&"' where ID="&request.querystring("ID")) 
    select case request.querystring("PhotoCSS")
	case "CSS1" Call CSS1
	case "CSS2" Call CSS2
	case "CSS3" Call CSS3
	end select
    response.redirect"JSmanage.asp"  
  end if
  set rs=conn.execute("select PhotoPath from JSFile where ID="&request.querystring("ID"))
%>
<html>
<head>
<title>管理中心 - 共享世纪新闻文章管理系统</title>
<meta copy="WWW.2KY.CN 共享世纪">
<link rel="stylesheet" href="admin.css" type="text/css">
</head>
<body background="images/BLogo.gif">
<form name="form" method="POST" action="">
<table width="95%" border="0" cellspacing="1" cellpadding="3"  align=center class="tableBorder">    
   <tr align="center" valign="middle"> 
      <th height="25" colspan="2"><b>
      <img border="0" src="images/NEWWIN.GIF"> 图片新闻JS</b></th>
    </tr>
    <tr valign="middle"> 
      <td height="25" class=forumrow onMouseOver=this.style.backgroundColor='#FAFBFC'; this.style.cursor='hand'; onMouseOut=this.style.backgroundColor=''; width="10%">图片路径: 
      </td>
      <td height="25" class=forumrow onMouseOver=this.style.backgroundColor='#FAFBFC'; this.style.cursor='hand'; onMouseOut=this.style.backgroundColor=''; width="90%"> 
        <input type="text" size=100 name="PhotoPath" value=<%=rs("PhotoPath")%>>
      </td>
    </tr>
    <tr valign="middle" align="center"> 
      <th height="25" onMouseOver=this.style.backgroundColor='#FAFBFC'; this.style.cursor='hand'; onMouseOut=this.style.backgroundColor=''; colspan="2"> 
        <input type=hidden name=action value="Modify">
        <input type=hidden value=<%=request.querystring("type")%> name=Type>
        <input type=hidden value=<%=request.querystring("JSName")%> name=JSName>
        <input type=hidden value=<%=request.querystring("PhotoCss")%> name=PhotoCss>
        <input type="submit" name="Submit2" value=" 修 改 ">
      </th>
    </tr>
  </table>
</form>
</body>
</html>