?? admin_itemfiltermodify.asp
字號:
<!--#include file="inc/conn.asp"-->
<!--#include file="inc/function.asp"-->
<%
Dim SqlItem,RsItem,Action,ItemID,FilterName,FilterID,FilterObject,FilterType,FilterContent,FisString,FioString,FilterRep,Flag,PublicTf
Dim FoundErr,ErrMsg
Action=Trim(Request("Action"))
FilterID=Trim(Request("FilterID"))
If FilterID="" Then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>參數(shù)錯(cuò)誤,請從有效鏈接進(jìn)入</li>"
Else
FilterID=Clng(FilterID)
End If
If Action="SaveEdit" and FoundErr<>True Then
Call SaveEdit
Else
Call Test()
End If
If FoundErr<>True Then
Call Main()
Else
Call WriteErrMsg(ErrMsg)
End If
'關(guān)閉數(shù)據(jù)庫鏈接
Call CloseConn()
Call CloseConnItem()
%>
<%
Sub Main
%>
<html>
<head>
<title>采集系統(tǒng)</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" type="text/css" href="../css/Admin_Style.css">
<SCRIPT language=javascript>
function showset(thisform)
{
if(thisform.FilterType.selectedIndex==1)
{
FilterType1.style.display = "none";
FilterType2.style.display = "";
}
else
{
FilterType1.style.display = "";
FilterType2.style.display = "none";
}
}
</script>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" class="border">
<tr class='topbg'>
<td height="22" colspan="2" align="center" ><strong>采 集 系 統(tǒng) 過 濾 管 理</strong></td>
</tr>
</table>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" class="border">
<tr class="tdbg">
<td width="65" height="30"><strong>管理導(dǎo)航:</strong></td>
<td height="30"><a href=Admin_ItemFilters.asp>管理首頁</a> | <a href="Admin_ItemFilterAdd.asp">添加新過濾</a></td>
</tr>
</table>
<br>
<form method="post" action="Admin_ItemFilterModify.asp" name="form1">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" class="border" >
<tr>
<td height="22" colspan="2" class="title"> <div align="center"><strong>編 輯 過 濾</strong></div></td>
</tr>
<tr class="tdbg">
<td width="150" class="tdbg"><strong> 過濾名稱:</strong></td>
<td class="tdbg"><input name="FilterName" type="text" id="FilterName" value="<%=FilterName%>" size="25" maxlength="30">
</td>
</tr>
<tr class="tdbg">
<td width="150" class="tdbg"><strong> 所屬項(xiàng)目:</strong></td>
<td class="tdbg"><%Call Admin_ShowItem_Option(ItemID)%>
</td>
</tr>
<tr class="tdbg">
<td width="150" class="tdbg"><strong> 過濾對象:</strong></td>
<td class="tdbg">
<select name="FilterObject" id="FilterObject">
<option value="1" <%if FilterObject=1 Then Response.Write "selected"%>>標(biāo)題過濾</option>
<option value="2" <%if FilterObject=2 Then Response.Write "selected"%>>正文過濾</option>
</select>
</td>
</tr>
<tr class="tdbg">
<td width="150" class="tdbg"><strong> 過濾類型:</strong></td>
<td class="tdbg">
<select name="FilterType" id="FilterType" onchange=showset(this.form)>
<option value="1" <%if FilterType=1 Then Response.Write "selected"%> >簡單替換</option>
<option value="2" <%if FilterType=2 Then Response.Write "selected"%>>高級過濾</option>
</select>
</td>
</tr>
<tr class="tdbg">
<td width="150" class="tdbg"><strong> 使用狀態(tài):</strong></td>
<td class="tdbg">
<select name="Flag" id="Flag">
<option value="yes" <%If Flag=True Then Response.Write "selected"%>>啟用</option>
<option value="no" <%If Flag=False Then Response.Write "selected"%>>禁用</option>
</select>
</td>
</tr>
<tr class="tdbg">
<td width="150" class="tdbg"><strong> 使用范圍:</strong></td>
<td class="tdbg">
<select name="PublicTf" id="PublicTf">
<option value="yes" <%If PublicTf=True Then Response.Write "selected"%>>公有</option>
<option value="no" <%If PublicTf=False Then Response.Write "selected"%>>私有</option>
</select>
</td>
</tr>
</table>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" class="border" id="FilterType1" style="display:<%if FilterType<>1 Then Response.Write "none"%>">
<tr class="tdbg">
<td width="150" class="tdbg"><strong> 內(nèi)容:</strong></td>
<td class="tdbg"><textarea name="FilterContent" cols="49" rows="5"><%=FilterContent%></textarea>
</td>
</tr>
</table>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" class="border" id="FilterType2" style="display:<%if FilterType<>2 Then Response.Write "none"%>">
<tr class="tdbg">
<td width="150" class="tdbg"><strong> 開始標(biāo)記:</strong></td>
<td class="tdbg"><textarea name="FisString" cols="49" rows="5"><%=FisString%></textarea>
</td>
</tr>
<tr class="tdbg">
<td width="150" class="tdbg"><strong> 結(jié)束標(biāo)記:</strong></td>
<td class="tdbg"><textarea name="FioString" cols="49" rows="5"><%=FioString%></textarea>
</td>
</tr>
</table>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" class="border" >
<tr class="tdbg">
<td width="150" class="tdbg"><strong> 替換:</strong></td>
<td class="tdbg"><textarea name="FilterRep" cols="49" rows="5" id="FilterRep"><%=FilterRep%></textarea></td>
</tr>
</table>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" class="border" >
<tr class="tdbg">
<td colspan="2" align="center" class="tdbg">
<input name="Action" type="hidden" id="Action" value="SaveEdit">
<input name="FilterID" type="hidden" id="FilterID" value="<%=FilterID%>">
<input name="Cancel" type="button" id="Cancel" value="返 回" onClick="window.location.href='Admin_ItemFilters.asp'" style="cursor: hand;background-color: #cccccc;">
<input type="submit" name="Submit" value="確 定" style="cursor: hand;background-color: #cccccc;">
</td>
</tr>
</table>
</form>
<!--#include file="Admin_ItemFoot.asp"-->
</body>
</html>
<%End Sub%>
<%
Sub SaveEdit
FilterID=Trim(Request("FilterID"))
FilterName=Trim(Request.Form("FilterName"))
ItemID=Trim(Request.Form("ItemID"))
FilterObject=Trim(Request.Form("FilterObject"))
FilterType=Trim(Request.Form("FilterType"))
FilterContent=Request.Form("FilterContent")
FisString=Request.Form("FisString")
FioString=Request.Form("FioString")
FilterRep=Request.Form("FilterRep")
Flag=Trim(Request.Form("Flag"))
PublicTf=Trim(Request.Form("PublicTf"))
If FilterID="" Then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>參數(shù)錯(cuò)誤!請從有效鏈接進(jìn)入</li>"
Else
FilterID=Clng(FilterID)
End If
If FilterName="" Then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>過濾名稱不能為空</li>"
End If
If ItemID="" Then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>請選擇過濾所屬項(xiàng)目</li>"
Else
ItemID=Clng(ItemID)
If ItemID=0 Then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>請選擇過濾所屬項(xiàng)目</li>"
End If
End If
If FilterObject="" Then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>請選擇過濾對象</li>"
Else
FilterObject=Clng(FilterObject)
End If
If FilterType="" Then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>請選擇過濾類型</li>"
Else
FilterType=Clng(FilterType)
If FilterType=1 Then
If FilterContent="" Then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>過濾的內(nèi)容不能為空</li>"
End If
ElseIf FilterType=2 Then
If FisString="" or FioString="" Then
FoundErr=True
ErrMsg=ErrMsg & "<br><li>開始/結(jié)束標(biāo)記不能為空</li>"
End If
Else
FoundErr=True
ErrMsg=ErrMsg & "<br><li>參數(shù)錯(cuò)誤,請從有效鏈接進(jìn)入</li>"
End If
End If
If Flag="yes" Then
Flag=True
Else
Flag=False
End If
If PublicTf="yes" Then
PublicTf=True
Else
PublicTf=False
End If
If FoundErr<>True Then
SqlItem ="select top 1 * from Filters Where FilterID=" & FilterID
Set RsItem=server.CreateObject("adodb.recordset")
RsItem.open SqlItem,ConnItem,2,3
RsItem("FilterName")=FilterName
RsItem("ItemID")=ItemID
RsItem("FilterObject")=FilterObject
RsItem("FilterType")=FilterType
If FilterType=1 Then
RsItem("FilterContent")=FilterContent
ElseIf FilterType=2 Then
RsItem("FisString")=FisString
RsItem("FioString")=FioString
End If
RsItem("FilterRep")=FilterRep
RsItem("Flag")=Flag
RsItem("PublicTf")=PublicTf
RsItem.Update
RsItem.Close
Set RsItem=Nothing
Response.Redirect "Admin_ItemFilters.asp"
Else
Call WriteErrMsg(ErrMsg)
End If
End Sub
Sub Test
Set RsItem=server.createobject("adodb.recordset")
SqlItem="select * from Filters Where FilterID=" & FilterID
RsItem.open SqlItem,ConnItem,1,1
If Not RsItem.Eof Then
ItemID=RsItem("ItemID")
FilterName=RsItem("FilterName")
FilterObject=RsItem("FilterObject")
FilterType=RsItem("FilterType")
FilterContent=RsItem("FilterContent")
FisString=RsItem("FisString")
FioString=RsItem("FioString")
FilterRep=RsItem("FilterRep")
Flag=RsItem("Flag")
PublicTf=RsItem("PublicTf")
Else
FoundErr=True
ErrMsg=ErrMsg & "<br></li>參數(shù)錯(cuò)誤,找不到該項(xiàng)目</li>"
End If
RsItem.Close
Set RsItem=Nothing
End Sub
%>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -