Hi !
If you are not logged, and try to reply to a post, you have 2 fields so you can enter username, pass & post at the same time. My problem is if you try to log from the upper header login section, it will redirect you to default.asp, which is in my opinion wrong. It should log you on and redirect you to the reply page you were before (without those 2 login fields thatwere previously there - but that i'll do).
I've found that on line 50 of the post.asp page, there is this condition responsible for all this :
if Request.QueryString("method") <> "" then
strRqMethod = chkString(Request.QueryString
"method"), "SQLString")
else
Response.Redirect("default.asp")<----HERE
end if
Now, the login page submits itself to :
<form action="/forum2/forum/post.asp" method="post" id="form1" name="form1">
So i thought that would be the problem since the querystring dont have any method in it....but other pages that worked submitted themselves with an empty method-querystring as well !!
Anyone knows how to solve this ???
Thanks