M
Mr. x
Hello,
I have declared in my program (*.aspx) something like this :
<%@ Page Language="VB" Debug="true" %>
....
<%
dim current_view_page
current_view_page = "1"
if not (Request.QueryString is nothing) then
current_view_page = Request.QueryString
end if
%>
in the body section I put something like this :
....
<% if current_view_page = "1" then
response.write(" .... ")
end if
%>
I got an error message :
Operator is not valid for type 'HttpValueCollection' and string "1".
Why ?
Thanks
I have declared in my program (*.aspx) something like this :
<%@ Page Language="VB" Debug="true" %>
....
<%
dim current_view_page
current_view_page = "1"
if not (Request.QueryString is nothing) then
current_view_page = Request.QueryString
end if
%>
in the body section I put something like this :
....
<% if current_view_page = "1" then
response.write(" .... ")
end if
%>
I got an error message :
Operator is not valid for type 'HttpValueCollection' and string "1".
Why ?
Thanks