Tagged Questions
1
vote
1answer
186 views
SSRS Passing parameter of MDX in URL
I'm trying to pass one parameter: [Company].[Project Manager].&[10000]&[Dave] in SSRS URL action, in which &[1000] is office number and &[Dave] is PM name.
I got problem when passing ...
0
votes
1answer
109 views
Passing parameter with javascript through Google Chrome
So I've been working a widget based off the one listed here: http://php-drops.blogspot.com/2011/04/creating-widget-with-javascript-and-php.html
Users I am trying to create a preview function of the ...
1
vote
1answer
176 views
Ruby on rails parameters are appearing in the url
Hi im having two actions check and display in my controller and i have two views check.html.erb and display.html.erb in the view corresponding to those actions. The check method has a form in it's ...
2
votes
1answer
338 views
How should I transfer variables/ parameters securely between multiple domains in PHP?
I would like to securely transfer sensitive variables between multiple in PHP. Normally I would use url parameters or session cookies to transfer non-sensitive values. I'm not sure how secure I can ...
11
votes
3answers
11k views
Send list/array as parameter with jQuery getJson
I have the following where I'm trying to send list/array to MVC controller method:
var id = [];
var inStock = [];
$table.find('tbody>tr').each(function() {
...