Why is it not OK to do a HTTP.Post to the default page on ASP.NET I have a default.aspx file that i want to be accessed when an external utility do a post to the
http://{ip}/WebSiteName
I want that the actual post will be to this page:
http://{ip}/WebSiteName/Defualt.aspx
or
http://{ip}/WebSiteName/Handler.ashx
I think that if i get it to post to the first url, i will be able to recreate a new post to the second url - which is my original target.
Thanks, Itay