Top "Parameters" questions

Parameters are a type of variable used in a subroutine to refer to the data provided as input to the subroutine.

HTML forms - input type submit problem with action=URL when URL contains index.aspx

I have a HTML form that truncates the action parameter after the "?" mark - which is NOT the desired behavior …

html forms url parameters action
Optional args in MATLAB functions

How can I declare function in MATLAB with optional arguments? For example: function [a] = train(x, y, opt), where opt …

function math matlab parameters arguments
Pass multiple optional parameters to a C# function

Is there a way to set up a C# function to accept any number of parameters? For example, could you …

c# function parameters
C#: HttpClient with POST parameters

I use codes below to send POST request to a server: string url = "http://myserver/method?param1=1&param2=2" HttpClientHandler …

c# post parameters httpclient
Passing a method as a parameter in Ruby

I am trying to mess around a little bit with Ruby. Therefor I try to implement the algorithms (given in …

ruby parameters methods
Characters allowed in GET parameter

Which characters are allowed in GET parameters without encoding or escaping them? I mean something like this: http://www.example.…

parameters get special-characters character
Execute stored procedure with parameters

I have stored procedure and should get its result. From debugging of Java part: return getJdbcTemplate().call(newCallableStatementCreator(inParams), getDeclaredParameters()); …

parameters plsql execute procedure
How do I pass an array as a parameter to another script?

For some reason, it looks like I cannot pass array of strings as parameter to scriptblock. What am I doing …

arrays powershell parameters arguments
How do you call a Stored Procedure in SSIS?

I am trying to create an SSIS package that queries data from a table, and calls a stored procedure in …

sql-server sql-server-2005 stored-procedures ssis parameters
MVC- How to get parameter value from get request which has parameter names including dot characters

In MVC, I know we can get parameters from a get request like this: Request: http://www.example.com/method?…

asp.net-mvc url parameters get asp.net-mvc-routing