I am tring to authenticate my web application forms.If any user tried to access any page then s/he should redirect to login page.
for that I have change
>> my web.config files as :


<authentication mode="Forms">
<forms loginUrl="Login.aspx" name="Login">
</forms>
</authentication>
<authorization>
<deny users="?"/>
</authorization>


But my purpoise doesn't solved.Can anybody correct my mistake.
Help Expected.

Pankaj