Ana Sayfa > İçerik Yönetimi > Dosya Havuzu
<%
islem=request.QueryString("islem")
select case islem
case "Delete"
cid=Temizle(Request.Querystring("cid"))
if cid="" or isnumeric(cid)=false then response.Redirect("documents.asp?LanguageID="&LanguageID)
set DocumentDelete=conn.execute("delete * From Table_ContentDocumentsGroup where DocumentID="& cid &" and CultureID="&LanguageID)
set DocumentDelete=conn.execute("delete * From Table_Content_Documents where ParentID="& cid &"")
'Response.Redirect Request.ServerVariables("HTTP_REFERER")
%>
! Dosya Grubu Silindi ...
<%end select%>