All -- I have been trying to find a working example of passing data from a Dojo function to an ASP.Net code behind. THe only post I found that at least offers an easy example is this POST
相关问题
- Is there a limit to how many levels you can nest i
- Sorting 3 numbers without branching [closed]
- How to toggle on Order in ReactJS
- Graphics.DrawImage() - Throws out of memory except
- Carriage Return (ASCII chr 13) is missing from tex
Hidden inputs are how I do it for simple pages.
ASP.Net Markup (simplified):
Code-Behind:
value = HiddenField1.Value;
When I want to get fancy, I'll post it to an API I write via an AJAX call.