Hi,
My page can not find any parameters sent using the POST methed when the following ATLAS code is contained in the web.config file:
<!-- The MultiRequestHandler enables multiple requests to be handled in one roundtrip to the server. Its use requires Full Trust.-->
<add verb="*" path="atlasbatchcall.axd" type="Microsoft.Web.Services.MultiRequestHandler" validate="false"/>
<add verb="*" path="atlasglob.axd" type="Microsoft.Web.Globalization.GlobalizationHandler" validate="false"/>
<add verb="*" path="*.asbx" type="Microsoft.Web.Services.ScriptHandlerFactory" validate="false"/>
All GET parameters are not effected.
Does anyone know how I can resolve this?
Regards
Parlster
Got it.
I misinterpretated the issue.
POST variables are removed when the Session state management is set to Cookieless:
<sessionStatecookieless="true"/>
The lost variables can be found by using GET submission or using Cookies to manage the Session:
<sessionStatecookieless="AutoDetect"/>
Regards
Parlster
No comments:
Post a Comment