Hello all,
I haven't heard much on this specific topic so I'm hoping someone here can shed light on it.
I'm developing a module to be used with version 3.1.1. I have a few bits of data that I need tied to individual user sessions (when I say user, I'm talking about anonymous unauthenticated users). The information only needs to persist on one page within one display control so my obvious choice was the v13wstat3. I don't receive any exceptions when storing the information in the v13wstat3 ala:
v13wstat3("SortExpression") = "PostDate"
v13wstat3("SortOrder") = " DESC"
However when I try to use those values after a postback they seem to no longer exist (equal to Nothing). The values seem to persist up until the postback occurs (I can read them back right after I assign them).
Has anyone seen this behavior before? DNN's root is setup the same way as all of my other web apps and they all behave normally as far as v13wstat3 goes.
Is there something strange about how the DNN core implements v13wstat3 that could cause this?
I do have this set correctly (AFAIK) in my web.config:
<pages validateRequest="false" enablev13wstat3Mac="true" />
so I'm guessing that is unrelated to the problem.
Any help would be greatly appreciated!
Thanks,
K