In my CSHTML I have some JavaScript which contains a string variable. How do I access this variable from my controller?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
When you invoke the controller you could pass it as parameter. For example if you are invoking the controller action using AJAX:
|
|||
|
|
in script
|
|||
|
|
|
You can use a hidden input field in your form valorized with the value of your string variable. When you post the form you can read the value as usual. |
|||
|
|