Dear Expert
I am new developer for Asp Site. I found Asapi Rewrite, Other Mode Rewrite software incapable with my hosting. After research many weeks, i have found 404 custom in IIS can make Asp Classic Url Rewrite very well. Then
can i remove 2 ID by any method in 404 request query string: cut off ID : this
this is my 404 error code within database pages.
<%
Set istekurl = Request.ServerVariables("QUERY_STRING")
istekbolum = Split(istekurl,"/")
Gelendir=istekbolum(4)
Parcala=Split(Gelendir,"_")
cat_id=Parcala(0)
Sorgu="Select * From links Where live=1 and ClassTopic="&cat_id&""
Rs.Open Sorgu,bag,1
if rs.eof then
response.redirect "/directory/submit.asp?uyari=notfound"
end if
%>
any help?
Edited by angkorboy - 12 October 2009 at 4:31pm