I'm brand spanking new to DNN development. In fact, if anyone wants to throw links at me on documents that layout DNN's framework or any other great literature that will get me up to speed on developing modules for DNN, go ahead. But, here's the reason for my post...
Firstly, I'm working in C#.
I'm trying to do a PostBack to the same page, but trigger that PostBack by Javascript function (which is called by a Flash function, because apparently there's not a way to run a C# function from Flash?). Anyway, for this application, I only need to pass one hidden value. Then compare that value within an IsPostBack check of the Page_Load procedure to display an object and/or run a LINQ insert.
I've been working on this for a while, and I can't seem to get it to work...
1. I don't know how to trigger the PostBack with Javascript.
2. I'm not sure how to consume the passed value in the code behind.
3. I'm not sure that the page isn't just refreshing.
Since all that relies on each other, it makes it about impossible to trouble shoot... any help would be MUCH appreciated.