I found the problem
I have a default.asp page in admin section of my news aplication all of the pages such as add new entry page is in this page with a Select case function
like this
================
If Session("admin_pu") = true Then
%>
<% Select Case news_Include %>
<% Case "add_news" %>
<!--#include file="includes/add_news.asp" -->
<% Case "news_edit" %>
<!--#include file="includes/news_edit.asp" -->
<% end select %>
<% Else %>
<% Select Case news_Include %>
<% Case "add_news" %>
<!--#include file="includes/add_news.asp" -->
<% end select
End If
%>
|
=======================
we have two group admin and user
in admin mode the first section will run but in user mode second section will run
when I run the page in Admin mode every thing is okay but when I use RTE it show me above error
RTE is in add_news.asp file, it think there is two
file and it show me this error
but its in Admin mode and just frist section will run why it think there is two file ( add_news.asp )
how can I solve this problem
?
Thanks