Hello,
I have written an HttpModule, which is registering to the BeginRequest event, and encrypting/decrypting the querystring in ASP.Net 2.0. Now I am using DNN, and I want to do the same in here. But when I look at web.Config, I can see many other HttpModules registred. One of them is UrlRewriter. My own HttpModule is not working in DNN, and I don't know why. I guess, it is not working, because of the registred modules in DNN, maybe because of UrlRewriter.
So my question is, how can I encrypt querystring in DNN? Can I use the same technique like in ASP? Or have I to extend any DNN classes? And please don't tell me that I can apply logic without using querystrings. I have to do it with querystrings. I just want to know, how to encrypt/decrypt querystring in DNN. BTW, I disabled FriendlyURLs, so I am able to get the querystring like I need.
Thanks for help...