All Questions
3 questions
1
vote
1
answer
67
views
Does it make sense to use reflection or to hard-code controller parameter names in JavaScript?
So I have made a pull request to change this code:
//Controller:
...
[HttpPost]
public ActionResult Unauthorize(int userID, int permissionID)
{
...
1
vote
0
answers
60
views
How do I protect JS local scope but allow outside customization?
I am creating a javascript application that will live in a library and be used on multiple sites. I am looking for it to have the following features and need some guidance on accomplishing these goals:...
4
votes
2
answers
5k
views
Storing session key in a hidden field
Background:
I have a question which is outline at Use different local storage between windows. The very high level question is "How can I keep tabs and windows sessions from clashing".
Requirement:
...